CSS3新標(biāo)簽解釋及用法
一。 transition(a標(biāo)簽hover漸隱效果)
a:hover{transition: color 0.15s linear 0s, background-color 0.3s linear 0s;}
-webkit-transition:color 0.15s linear 0s, background-color 0.3s linear 0s;
-moz-transition:color 0.15s linear 0s, background-color 0.3s linear 0s;
-o-transition:color 0.15s linear 0s, background-color 0.3s linear 0s;
-ms-transition:color 0.15s linear 0s, background-color 0.3s linear 0s;
transition:color 0.15s linear 0s, background-color 0.3s linear 0s;
一. box-shadow(陰影效果)
box-shadow: 20px 10px 0 #000;
-moz-box-shadow: 20px 10px 0 #000;
-webkit-box-shadow: 20px 10px 0 #000;
FF3.5, Safari 4, Chrome 3
二. border-colors(為邊框設(shè)置多種顏色)
border: 10px solid #000;
-moz-border-bottom-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;
-moz-border-top-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;
-moz-border-left-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;
-moz-border-right-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;
顏色值數(shù)量不固定, 且FF的私有寫法不支持縮寫: -moz-border-colors: #333 #444 #555;
三. boder-image(圖片邊框)
-moz-border-image: url(exam.png) 20 20 20 20 repeat;
-webkit-border-image: url(exam.png) 20 20 20 20 repeat;
(1). 20 20 20 20 ---> 邊框的寬度, 分別對應(yīng)top, right, bottom, left邊框, 改變寬度可以實(shí)現(xiàn)不同的效果;
(2). 邊框圖片效果(目前僅實(shí)現(xiàn)了兩種):
repeat --- 邊框圖片會(huì)平鋪, 類似于背景重復(fù);
stretch --- 邊框圖片會(huì)以拉伸的方式來鋪滿整個(gè)邊框;
(3). 必須將元素的邊框厚度設(shè)置為非0非auto值.
FF 3.5, Safari 4, Chrome 3
四. text-shadow(文本陰影)
text-shadow: [<顏色><水平偏移><縱向偏移><模糊半徑>] || [<水平偏移><縱向偏移><模糊半徑><顏色>];
(1) <顏色>和<模糊半徑>是可選的, 當(dāng)<顏色>未指定時(shí), 將使用文本顏色; 當(dāng)<模糊半徑>未指定時(shí), 半徑值為0;
(2) shadow可以是逗號分隔的列表, 如:
text-shadow: 2px 2px 2px #ccc, 3px 3px 3px #ddd;
(3) 陰影效果會(huì)按照shadow list中指定的順序應(yīng)用到元素上;
(4) 這些陰影效果有可能相互重疊, 但不會(huì)疊加文本本身;
(5) 陰影可能會(huì)跑到容器的邊界之外, 但不會(huì)影響容器的大小.
FF 3.5, Opera 10, Safari 4, Chrome 3
五. text-overflow(文本截?cái)?
text-overflow: inherit | ellipsis | clip ;
-o-text-overflow: inherit | ellipsis | clip;
(1) 還有一個(gè)屬性ellipsis-word, 但各瀏覽器均不支持.
IE6+, Safari4, Chrome3, Opera10
六. word-wrap(自動(dòng)換行)
word-wrap: normal | break-word;
IE6+, FF 3.5, Safari 4, Chrome 3
七. border-radius(圓角邊框)
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
FF 3+, Safari 4 , Chrome 3
八. opacity(不透明度)
opacity: 0.5;
filter: alpha(opacity=50); /* for IE6, 7 */
-ms-filter(opacity=50); /* for IE8 */
九. box-sizing(控制盒模型的組成模式)
box-sizing: content-box | border-box; // for opera
-moz-box-sizing: content-box | border-box;
-webkit-box-sizing: content-box | border-box;
1. content-box:
使用此值時(shí), 盒模型的組成模式是, 元素寬度 = content + padding + border;
2. border-box:
使用此值時(shí), 盒模型的組成模式是, 元素寬度 = content(即使設(shè)置了padding和border, 元素的寬度
也不會(huì)變).
FF3+, Opera 10, Safari 4, Chrome 3
十. resize(元素縮放)
resize: none | both | horizontal | vertical;
1. 必須將元素的overflow屬性設(shè)置為auto或hidden, 該屬性才能起作用(overflow設(shè)置為visible時(shí), 無效);
2. 屬性值說明:
(1). none --> 禁用縮放;
(2). both --> 可同時(shí)縮放寬度和高度;
(3). horizontal --> 僅能縮放寬度;
(4). vertical --> 僅能縮放高度;
safari 4, chrome 3
十一. outline(外邊框)
outline: 邊框厚度 邊框樣式 邊框顏色;
outline-offset: 偏移值;
outline-offset需要獨(dú)立寫, 簡寫是無效的.
FF3+, safari 4, chrome 3, opera 10
十二. background-size(指定背景圖片的尺寸)
-o-background-size: [length | percentage] {1, 2};
-webkit-background-size: [length | percentage] {1, 2};
-o-background-size: 50px 60px;
-webkit-background-size: 50px 60px;
這會(huì)將背景圖片的寬設(shè)置了50px, 高60px.
safari 4, chrome 3, opera 10
十三. background-origin(指定背景圖片從哪里開始顯示)
-webkit-background-origin: border | padding | content;
-moz-background-origin: border | padding | content;
(1) border --> 從border區(qū)域開始顯示背景;
(2) padding --> 從padding區(qū)域開始顯示背景;
(3) content --> 從content區(qū)域開始顯示背景;
1. 必須先指定background屬性, 然后才能指定該屬性, 如果該屬性出現(xiàn)在background屬性之前,
safari 4, chrome 3, FF 3+
十四. background-clip(指定背景圖片從什么位置開始裁切)
-webkit-background-origin: border-box | padding-box | content-box | no-clip;
(1) border-box --> 從border區(qū)域向外裁剪背景;
(2) padding-box --> 從padding區(qū)域向外裁剪背景;
(3) content-box --> 從content區(qū)域向外裁剪背景;
(4) no-clip --> 不裁切背景.
1. 必須先指定background屬性, 然后才能指定該屬性, 如果該屬性出現(xiàn)在background屬性之前,
safari 4, chrome 3
十五. background(為一個(gè)元素指定多個(gè)背景)
background: [background-image] | [background-origin] | [background-clip] |[background-repeat] | [background-size] | [background-position]
background: url(bg1.png) no-repeat left top, url(bg2.png) no-repeat right bottom;
safari 4, chrome 3
十六. hsl(通過色調(diào), 飽和度, 亮度來指定顏色值)
hsl: ( <length> || <percentage> || <percentage>);
(1) length: h(色調(diào)), 0(或360)表示紅色, 120表示綠色, 240表示藍(lán)色;
(2) percentage: s(飽和度), 取值為0%到 之間的值;
(3) percentage: l(亮度), 取值為0%到 之間的值;
background: hsl(240, 50%, );
color: hsl(100, 80, );
safari 4, chrome 3, FF3, opera 10
十七. hsla(在hsl的基礎(chǔ)上上增加了一個(gè)透明度設(shè)置)
hsla: ( <length> || <percentage> || <percentage> || <opacity>);
(1) opacity: a(透明度), 取值在0到1之間;
background: hsl(240, 50%, , 0.5);
color: hsl(240, 50%, , 0.5);
safari 4, chrome 3, FF3, opera 10
十八. rgba(基于r,g,b三個(gè)顏色通道來設(shè)置顏色值, 通過a來設(shè)置透明度)
rgba: (r, g, b, opacity);
(1) r: 紅色, 正整數(shù) | 百分?jǐn)?shù);
(2) g: 綠色, 正整數(shù) | 百分?jǐn)?shù);
(3) b: 藍(lán)色, 正整數(shù) | 百分?jǐn)?shù);
(4) a: 透明度, 取值在0到1之間;
(5) 正整數(shù)在0到255之間, 百分?jǐn)?shù)在0%到 之間.
rgba: ( , 244, 0, 0.5);
safari 4, chrome 3, FF3, opera 10