Is it possible to use variables in CSS?
I know you can define multiple classes at once, by separating them with commas... but can you do the opposite?
Something like...
$stringA = 500px
.class1 { min-width: $stringA;px }
.class2 { max-width: $stringA;px }
This isn't anything I'm trying to do specifically, let's not focus too much on the example; I'm just trying to find out if there's a way to define a variable in one location and call it in multiple other locations (with or without the help of php).
Thanks!
