Last active
August 29, 2015 14:03
-
-
Save szmeku/7322fe51bc27b6873f3a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// BEM | |
.list{ | |
// properties | |
} | |
.list__item{ | |
// properties | |
} | |
// own | |
// - mniej pisania | |
// - w edytorach fajnie sie collapsuje | |
// - latwiej przeniesc caly .list bez pominiecia childów, przy bemowej niezagniezdzonej strukturze latwiej cos zgubic, | |
// tutaj jak skopiujesz pół .list to bedzie syntax error | |
.list{ | |
// properties | |
.item{ | |
// properties | |
} | |
} | |
// mozna pomyslec nad zagniezdzonym bemem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment