I'm using the Gridster plugin, where columns width are defined like this:
[data-sizex="12"] { width: ... }
[data-sizex="11"] { width: ... }
[data-sizex="10"] { width: ... }
....
I have 2 questions about this;
- What kind of CSS classes are these? I have never done/seen anything like this, especially in CSS.
- If I want to select all the columns from 1-12, how do I use the code? Typically I'm using something like
[class*=".."] this
. I don't think so I can get a format like this for the above scenario.