-
As a criticism of the documentation here: http://operatino.github.io/MCSS/en/
it starts by telling me some ideological underpinnings. So it's like OOCSS (assuming I know about OOCSS). Then it says it…
-
Hi. I would be very interested to know what css development methodology do you use? SMACSS, OOCSs, BEM, or you have any proven achievements and guides?
-
Hi Guys,
I propose that we move forward with introducing BEM as our standard syntax when writing CSS.
I know a few guys are using BEM already but if not i've included a few links below which should …
-
Sepcificty value:
`input[type="search"]` = 11
`.input-search` = 10
It creates a bit of a annoyance when using the BEM CSS methodology. Would `[type="search"] {` not be a better idea to minimize the s…
-
From what I can tell, SUIT uses the following naming patterns:
```
u-:
u-is:
is-:
with-:
js-:
```
Is this list meant to be exhaustive? If so, would that mean that a class named `className` would be …
-
The lack of true namespacing and scope within CSS is a real problem when trying to build plugins or re-usable CSS modules.
A popular solution is to add a pseudo namespace with a ns- prefix. For exam…
-
In sass 3.1 this worked:
```
.blue
color: blue
a&
border-bottom: 1px solid blue
```
and compiled into
```
.blue {
color: blue; }
a.blue {
border-bottom: 1px solid blue; }
```
In 3.2…
-
I want to define functions from JS code and use them in roole.
In my case I need to change behavior of `url()` function to make relative path (based on file, where `url()` was called).
For instance:…
-
source:
```
.foo
&-bar
prop: value
```
output:
```
.foo-bar
prop: value
```
Maybe it's harmful for some reason, because it's doesn't work so in SASS, but works in LESS, Stylus. But I perso…