I'm using
.w400 {
width: 400px;
}
.w110 {
width: 110px;
}
.w600 {
width: 600px;
}
is it possible to make dynamic class with sass?
something like
.w(size) {
width: size+px
}
|
I'm using
is it possible to make dynamic class with sass? something like
|
|||
|
|
|
If you want to be able to use arbitrary
You would use it like this:
This generates the following CSS:
Now, if you want to avoid writing a new
Now you can pass it a list of widths. This generates the same CSS as above:
Note: This is just a guess, but wildcard class names might be possible by extending Sass with Ruby. However, I'm not sure if this is a desirable feature. |
|||
|
|