Created
October 2, 2012 13:30
-
-
Save csswizardry/3819156 to your computer and use it in GitHub Desktop.
Normal vs. BEM CSS
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
/*------------------------------------*\ | |
$MEDIA | |
\*------------------------------------*/ | |
/** | |
* Place any image- and text-like content side-by-side, as per: | |
* stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code | |
* E.g.: | |
* | |
<div class=media> | |
<img src=http://placekitten.com/200/300 alt="" class=img> | |
<p class=body>Lorem ipsum dolor sit amet, consectetur adipisicing elit, | |
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> | |
</div> | |
* | |
*/ | |
.media{ | |
display:block; | |
@extend .cf; | |
} | |
.media__img{ | |
float:left; | |
margin-right:$base-spacing-unit +px; | |
} | |
/** | |
* Reversed image location (right instead of left). | |
*/ | |
.media__img--rev{ | |
float:right; | |
margin-left:$base-spacing-unit +px; | |
} | |
.media__img img, | |
.media__img--rev img{ | |
display:block; | |
} | |
.media__body{ | |
overflow:hidden; | |
} | |
.media__body, | |
.media__body > :last-child{ | |
margin-bottom:0; | |
} | |
/** | |
* `.img`s in `.islet`s need an appropriately sized margin. | |
*/ | |
.islet .media__img{ | |
margin-right:$half-spacing-unit +px; | |
} | |
.islet .media__img--rev{ | |
margin-left:$half-spacing-unit +px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment