I need CSS rules which can dynamically adapt/re-format a content of a div to any changes of the size (even if the JavaScript is disabled). Is it possible?
Like:
@media (min-width:600px ) { div .content { column-count: 2; }}
@media (min-width:900px ) { div .content { column-count: 3; }}
...
or something, but for DIV and without JS.
I needed the CSS rules, which depends of the size of DIV instead of the size of viewport/screen... Maybe not like the @media rules, but something to change the div content formatting.