最新的Web开发教程
×

CSS 参考

CSS 参考 CSS 选择器 CSS 功能 CSS 参考听觉 CSS 网络安全字体 CSS 动画 CSS 单位 CSS PX-EM转换器 CSS 颜色 CSS 颜色 值 CSS3 浏览器支持

CSS 属性

align-content align-items align-self all animation animation-delay animation-direction animation-duration animation-fill-mode animation-iteration-count animation-name animation-play-state animation-timing-function backface-visibility background background-attachment background-blend-mode background-clip background-color background-image background-origin background-position background-repeat background-size border border-bottom border-bottom-color border-bottom-left-radius border-bottom-right-radius border-bottom-style border-bottom-width border-collapse border-color border-image border-image-outset border-image-repeat border-image-slice border-image-source border-image-width border-left border-left-color border-left-style border-left-width border-radius border-right border-right-color border-right-style border-right-width border-spacing border-style border-top border-top-color border-top-left-radius border-top-right-radius border-top-style border-top-width border-width bottom box-shadow box-sizing caption-side clear clip color column-count column-fill column-gap column-rule column-rule-color column-rule-style column-rule-width column-span column-width columns content counter-increment counter-reset cursor direction display empty-cells filter flex flex-basis flex-direction flex-flow flex-grow flex-shrink flex-wrap float font @font-face font-family font-size font-size-adjust font-stretch font-style font-variant font-weight hanging-punctuation height justify-content @keyframes left letter-spacing line-height list-style list-style-image list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top max-height max-width @media min-height min-width nav-down nav-index nav-left nav-right nav-up opacity order outline outline-color outline-offset outline-style outline-width overflow overflow-x overflow-y padding padding-bottom padding-left padding-right padding-top page-break-after page-break-before page-break-inside perspective perspective-origin position quotes resize right tab-size table-layout text-align text-align-last text-decoration text-decoration-color text-decoration-line text-decoration-style text-indent text-justify text-overflow text-shadow text-transform top transform transform-origin transform-style transition transition-delay transition-duration transition-property transition-timing-function unicode-bidi vertical-align visibility white-space width word-break word-spacing word-wrap z-index



 

CSS选择器参考


注意 w3ii“CSS引用与所有主流浏览器定期测试。


CSS选择

在CSS中,选择器是用来选择图案element(s)你想的风格。

"CSS"列表示CSS版本属性定义(CSS1, CSS2, or CSS3)

选择 举例说明 CSS
. class .intro 选择与所有元素class="intro" 1
# id #firstname 选择元素与id="firstname" 1
* * 选择所有元素 2
element p 选择所有<p>元素 1
element,element div, p 选择所有<div>元素和所有<p>元素 1
element element div p 选择所有<p>中的元素<div>元素 1
element > element div > p 选择所有<p>元素,其中母公司是<div>元素 2
element + element div + p 选择所有<p>被后立即放置元素<div>元素 2
element1 ~ element2 P〜UL 选择每个<ul>由前面有一个元素<p>元素 3
[ attribute ] [target] 选择与目标属性的所有元素 2
[ attribute = value ] [target=_blank] 选择所有元素与target="_blank" 2
[ attribute ~= value ] [title~=flower] 选择具有title属性包含单词的所有元素"flower" 2
[ attribute |= value ] [lang|=en] 选择具有lang属性值开始的所有元素"en" 2
[ attribute ^= value ] a[href^="https"] 选择每<a>元素,它href属性值以"https" 3
[ attribute $= value ] a[href$=".pdf"] 选择每<a>其href属性值结尾元素".pdf" 3
[ attribute *= value ] a[href*="w3ii"] 选择每<a>元素,它href属性值包含字符串"w3ii" 3
:active a:active 选择活动链接 1
::after p::after 每个的内容后插入的东西<p>元素 2
::before p::before 每个内容前插入的东西<p>元素 2
:checked input:checked 选择每个检查<input>元素 3
:disabled input:disabled 每一个选择禁用<input>元素 3
:empty p:empty 选择每<p>没有孩子的元素(including text nodes) 3
:enabled input:enabled 选择每个已启用<input>元素 3
:first-child p:first-child 选择每<p>元素是它的父的第一个孩子 2
::first-letter p::first-letter 每次选择的第一个字母<p>元素 1
::first-line p::first-line 选择每第一行<p>元素 1
:first-of-type p:first-of-type 选择每<p>元素,它是第一个<p>它的父元素 3
:focus input:focus 选择具有焦点的输入元素 2
:hover a:hover 选择了鼠标链接 1
:in-range input:in-range 选择一个指定范围内的一个值输入元素 3
:invalid input:invalid 选择具有无效值的所有投入要素 3
:lang( language ) p:lang(it) 选择每<p>与元素lang属性等于"it" (Italian) 2
:last-child p:last-child 选择每<p>元素是它的父的最后一个子 3
:last-of-type p:last-of-type 选择每<p>元素是最后<p>它的父元素 3
:link a:link 选择所有访问过的链接 1
:not( selector ) :not(p) 选择的每一个元素不是一个<p>元素 3
:nth-child( n ) p:nth-child(2) 选择每<p>元素是它的父的第二个孩子 3
:nth-last-child( n ) p:nth-last-child(2) 选择每<p>元素是它的父的第二个孩子,从最后一个子计数 3
:nth-last-of-type( n ) p:nth-last-of-type(2) 选择每<p>元素是第二<p>它的父元素,从最后一个子计数 3
:nth-of-type( n ) p:nth-of-type(2) 选择每<p>元素是第二<p>它的父元素 3
:only-of-type p:only-of-type 选择每<p>元素是唯一<p>它的父元素 3
:only-child p:only-child 选择每<p>元素是它的父的独生子 3
:optional input:optional 选择输入元素,没有"required"属性 3
:out-of-range input:out-of-range 选择一个值不在指定范围内的input元素 3
:read-only input:read-only 选择与输入元素"readonly"属性指定 3
:read-write input:read-write 选择与输入元素"readonly"属性不指定 3
:required input:required 选择输入元素的"required"指定属性 3
:root :root 选择文档的根元素 3
::selection ::selection 选择由用户选择的一个元件的一部分  
:target #news:target 选择当前活跃#news元(点击包含锚名的URL) 3
:valid input:valid 选择一个有效的值的所有投入要素 3
:visited a:visited 选择所有访问过的链接 1