SlideShare a Scribd company logo
1 of 19
Download to read offline
BEM & Preprocesory 
Tomáš Musiol
Co je BEM? 
B 
Block Element Modifier 
E M
Co je BEM? 
• Konvence pro pojmenování komponent 
• Nepoužívá ID, popisuje element výhradně pomocí Class 
• Střední a velké projekty (Původně Yandex IS) 
• Odděluje: Block / Element / Modifikátor
Block (modul): .player
Elementy 
.player__header 
.player__info 
.player__cover 
.player__footer 
.player__controls 
.player__time
Elementy & Modifikátory 
.player__control .player__control 
.player__control—share
Výhody 
• Modulárnost CSS 
• Znovupoužitelnost kódu 
• Přehled v prioritě selektorů (ID vs. Class vs. Zanoření) 
• Snadnější orientace v GIT repositáři 
• Snadno pochopitelné pro všechny členy týmu
Nevýhody 
• Mohou vznikat dlouhé názvy tříd 
• Zbytečně složité na malých projektech 
• Nepořádek v souborech (HTML, CSS), když se 
nedodržují pravidla
BEM a preprocesory (SASS) 
.player__info{ 
&__author{ … } 
&__song{ … } 
} 
3.3+
BEM a preprocesory (SASS) 
.player__info{ 
&__author{ … } 
&__song{ … } 
} 
.player__info{ … } 
.player__info__author{ … } 
.player__info__song{ … }
BEM a preprocesory (SASS) 
.player__control{ 
@extend %control; 
} 
.player__control--list{ … }
BEM a preprocesory (SASS) 
.player__control{ 
@extend %control; 
} 
.player__control--list{ … } 
.player__control{ … } 
.player__control--list{ … }
BEM a preprocesory (SASS) 
.player__info{ 
.author{ … } 
.song{ … } 
}
BEM a preprocesory (SASS) 
.player__info{ 
.author{ … } 
.song{ … } 
} 
.player__info{ … } 
.player__info .author{ … } 
.player__info .song{ … }
Priorita selektorů 
BEM Zanořené selektory 
BEM - modifikátor Zanořené selektory, modifikátor
Priorita selektorů 
BEM ID
Struktura souborů a složek
Užitečné pluginy BEM - SublimeText 
• All Autocomplete 
• Syntax highlighting for Sass 
• SublimeGit 
• GitGutter
Děkuji za pozornost 
Tomáš Musiol 
@kozleek www.musiol.cz

More Related Content

Viewers also liked

زكاة امس دان فيرق
زكاة امس دان فيرقزكاة امس دان فيرق
زكاة امس دان فيرقraidahfazliyana
 
Comparative literature ppt
Comparative literature pptComparative literature ppt
Comparative literature pptHaneen Fatima
 
Markets and government in a modern economy
Markets and government in a modern economyMarkets and government in a modern economy
Markets and government in a modern economyblues26
 
Community Camp 2016: Die richtige Forensoftware
Community Camp 2016: Die richtige ForensoftwareCommunity Camp 2016: Die richtige Forensoftware
Community Camp 2016: Die richtige ForensoftwareFranziska Hauck
 
Euthanasia
EuthanasiaEuthanasia
Euthanasiablues26
 
Interestingness of articles using twitter sentiments
Interestingness of articles using twitter sentimentsInterestingness of articles using twitter sentiments
Interestingness of articles using twitter sentimentsKritiKansalK
 

Viewers also liked (9)

زكاة امس دان فيرق
زكاة امس دان فيرقزكاة امس دان فيرق
زكاة امس دان فيرق
 
Surat Khabar
Surat KhabarSurat Khabar
Surat Khabar
 
Baby Growth Chart
Baby Growth ChartBaby Growth Chart
Baby Growth Chart
 
Memakmurkan Masjid
Memakmurkan MasjidMemakmurkan Masjid
Memakmurkan Masjid
 
Comparative literature ppt
Comparative literature pptComparative literature ppt
Comparative literature ppt
 
Markets and government in a modern economy
Markets and government in a modern economyMarkets and government in a modern economy
Markets and government in a modern economy
 
Community Camp 2016: Die richtige Forensoftware
Community Camp 2016: Die richtige ForensoftwareCommunity Camp 2016: Die richtige Forensoftware
Community Camp 2016: Die richtige Forensoftware
 
Euthanasia
EuthanasiaEuthanasia
Euthanasia
 
Interestingness of articles using twitter sentiments
Interestingness of articles using twitter sentimentsInterestingness of articles using twitter sentiments
Interestingness of articles using twitter sentiments
 

BEM & Preprocesory