Show Menu
Cheatography

CSS3 Cheat Sheet (DRAFT) by

CSS3

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Element Selectors

*
通配符选择器
匹配所有标签
E
元素选择器
匹配元素是E的标签
#id
id 选择器
按照id 匹配
.class
类选择器
按照class匹配
E, F
 
选择既是E的­元素,­又是F的元素

Relati­onship Selectors

E F
后代选择器
E 下面所有F 的标签,无论是否直系
E > F
子选择器/ 直接后代选择器
E 下面直系F标签
E + F
相邻兄弟选择器
跟E 相邻的同层级的F标签
E ~ F
通用兄弟选择器
无需跟E相邻­的同层级F标签

Attribute Selectors

[att]
带有att 属性的元素
[att="v­al"]
带有 att 属性,并且属­性值为val 的元素
[att^=­"­val­"]
带有att属­性,并以val 开头的元素
[att$=­"­val­"]
带有att属­性,并以val 结尾的元素
[att*=­"­val­"]
带有att属­性,且­属性值­包含“val” 的元素
[att~=­"­val­"]
带有att属­性,该­属性的­多个分­隔值中­至少匹­配一个­“val”
[att|=­"­val­"]
带有att属­性,并­且属性­值为“­val­”或以­“va­l-”为前缀
 

Backgr­ounds

background
backgr­oun­d-image | backgr­oun­d-p­osition | backgr­oun­d-size | backgr­oun­d-r­epeat | backgr­oun­d-a­tta­chment | backgr­oun­d-o­rigin | backgr­oun­d-clip | backgr­oun­d-color
backgr­oun­d-o­rigin
border-box | paddin­g-box | conten­t-box
backgr­oun­d-p­osition
top left | top center | top right | center left | center center | center right | bottom left | bottom center | bottom right | x-% y-% | x-pos y-pos
backgr­oun­d-a­tta­chment
scroll | fixed
backgr­oun­d-break
boundi­ng-box | each-box | continuous
backgr­oun­d-clip
length | % | border-box | paddin­g-box | conten­t-box| no-clip