最近,我開始更新網志了。
未來,本文将持續更新。

1. 文字的水準居中
将一段文字置于容器的水準中點,隻要設定text-align屬性即可:
text-align:center;
2. 容器的水準居中
先為該容器設定一個明确寬度,然後将margin的水準值設為auto即可。
div#container { width:760px; margin:0 auto; }
3. 文字的垂直居中
單行文字的垂直居中,隻要将行高與容器高設為相等即可。
比如,容器中有一行數字。
<div id="container">1234567890</div>
然後css這樣寫:
div#container {height: 35px; line-height: 35px;}
如果有n行文字,那麼将行高設為容器高度的n分之一即可。
4. 容器的垂直居中
<div id="big"> <div id="small"> </div>
首先,将大容器的定位為relative。
div#big{ position:relative; height:480px;
然後,将小容器定位為absolute,再将它的左上角沿y軸下移50%,最後将它margin-top上移本身高度的50%即可。
div#small { position: absolute; top: 50%; height: 240px; margin-top: -120px;
使用同樣的思路,也可以做出水準居中的效果。
5. 圖檔寬度的自适應
如何使得較大的圖檔,能夠自動适應小容器的寬度?css可以這樣寫:
img {max-width: 100%}
img {width: 100%}
6. 3d按鈕
div#button { background: #888; border: 1px solid; border-color: #999 #777 #777 #999;
7. font屬性的快捷寫法
font快捷寫法的格式為:
body { font: font-style font-variant font-weight font-size line-height font-family;
是以,
font-family: arial, helvetica, sans-serif; font-size: 13px; font-weight: normal; font-variant: small-caps; font-style: italic; line-height: 150%;
可以被寫成:
font: italic small-caps normal 13px/150% arial, helvetica, sans-serif;
8. link狀态的設定順序
link的四種狀态,需要按照下面的前後順序進行設定:
a:link a:visited a:hover a:active
9. ie條件注釋
你可以利用條件注釋,設定隻對ie産生作用的語句:
<!--[if ie]> <link rel="stylesheet" type="text/css" href="ie-stylesheet.css" /> < ![endif]-->
還可以區分各種不同的ie版本:
<!--[if ie 6]> - targets ie6 only --> <!--[if gt ie 6]> - targets ie7 and above --> <!--[if lt ie 6]> - targets ie5.5 and below --> <!--[if gte ie 6]> - targets ie6 and above --> <!--[if lte ie 6]> - targets ie6 and below -->
10. ie6專用語句:方法一
由于ie6不把html視為文檔的根元素,是以利用這一點,可以寫出隻有ie6才能讀到的語句:
/* the following rules apply only to ie6 */ * html{ * html body{ * html .foo{
ie7專用語句則要寫成
/* the following rules apply only to ie7 */ *+html .foo{
11. ie專用語句:方法二
除了ie6以外,所有浏覽器都不能識别屬性前的下劃線。而除了ie7之外,所有浏覽器都不能識别屬性前的*号,是以可以寫出隻有這兩個浏覽器才能讀到的語句:
.element { background: red; /* modern browsers */ *background: green; /* ie 7 and below */ _background: blue; /* ie6 exclusively */
12. css的優先性
基本規則是:
行内樣式 > id樣式 > class樣式 > 标簽名樣式
比如,有一個元素:
<div id="id" class="class" style="color:black;"></div>
行内樣式是最優先的,然後其他設定的優先性,從低到高依次為:
div < .class < div.class < #id < div#id < #id.class < div#id.class
13. ie6的min-height
ie6不支援min-height,有兩種方法可以解決這個問題:
方法一:
min-height: 500px; height: auto !important; height: 500px;
共有三條css語句,第一句是針對其他浏覽器設定最小高度,第三句是針對ie設定最小高度,第二句則是讓其他浏覽器覆寫第三句的設定。
方法二:
min-height: 500px _height: 500px
_height隻有ie6能讀取。
14. font-size基準
浏覽器的預設字型大小是16px,你可以先将基準字型大小設為10px:
body {font-size:62.5%;}
後面統一采用em作為字型機關,2.4em就表示24px。
h1 {font-size: 2.4 em}
15. text-transform和font variant
text-transform用于将所有字母變成小寫字母、大寫字母或首字母大寫:
p {text-transform: uppercase} p {text-transform: lowercase} p {text-transform: capitalize}
font variant用于将字型變成小型的大寫字母(即與小寫字母等高的大寫字母)。
p {font-variant: small-caps}
16. css重置
17. 用圖檔充當清單标志
預設情況下,浏覽器使用一個黑圓圈作為清單标志,可以用圖檔取代它:
ul {list-style: none} ul li { background-image: url("path-to-your-image"); background-repeat: none; background-position: 0 0.5em;
18. 透明
将一個容器設為透明,可以使用下面的代碼:
filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;
在這四行css語句中,第一行是ie專用的,第二行用于firefox,第三行用于webkit核心的浏覽器,第四行用于opera。
19. css三角形
如何使用css生成一個三角形?
先編寫一個空元素
<div class="triangle"></div>
然後,将它四個邊框中的三個邊框設為透明,剩下一個設為可見,就可以生成三角形效果:
.triangle { border-color: transparent transparent green transparent; border-style: solid; border-width: 0px 300px 300px 300px; height: 0px; width: 0px;
20. 禁止自動換行
如果你希望文字在一行中顯示完成,不要自動換行,css指令如下:
h1 { white-space:nowrap; }
21. 用圖檔替換文字
有時我們需要在标題欄中使用圖檔,但是又必須保證搜尋引擎能夠讀到标題,css語句可以這樣寫:
h1 { text-indent:-9999px; background:url("h1-image.jpg") no-repeat; width:200px; height:50px;
22. 獲得焦點的表單元素
當一個表單元素獲得焦點時,可以将其突出顯示:
input:focus { border: 2px solid green; }
23. !important規則
多條css語句互相沖突時,具有!important的語句将覆寫其他語句。由于ie不支援!important,是以也可以利用它區分不同的浏覽器。
color: red !important; color: blue;
上面這段語句的結果是,其他浏覽器都顯示紅色标題,隻有ie顯示藍色标題。
24. css提示框
當滑鼠移動到連結上方,會自動出現一個提示框。
<a class="tooltip" href="#">連結文字 <span>提示文字</span></a>
css這樣寫:
a.tooltip {position: relative} a.tooltip span {display:none; padding:5px; width:200px;} a:hover {background:#fff;} /*background-color is a must for ie6*/ a.tooltip:hover span{display:inline; position:absolute;}
25. 固定位置的頁首
body{ margin:0;padding:100px 0 0 0;} div#header{ position:absolute; top:0; left:0; width:100%; height:<length>; @media screen{ body>div#header{position: fixed;} * html body{overflow:hidden;} * html div#content{height:100%;overflow:auto;}
ie6的另一種寫法(用于固定位置的頁腳):
* html #footer { top:expression((0-(footer.offsetheight)+(document.documentelement.clientheight ? document.documentelement.clientheight : document.body.clientheight)+(ignoreme = document.documentelement.scrolltop ? document.documentelement.scrolltop : document.body.scrolltop))+'px');
26. 在ie6中設定png圖檔的透明效果
.classname { background: url(image.png); _background: none; _filter:progid:dximagetransform.microsoft.alphaimageloader (src='image.png', sizingmethod='crop'); }
27. 各類浏覽器的專用語句
/* ie6 and below */ * html #uno { color: red } /* ie7 */ *:first-child+html #dos { color: red } /* ie7, ff, saf, opera */ html>body #tres { color: red } /* ie8, ff, saf, opera (everything but ie 6,7) */ html>/**/body #cuatro { color: red } /* opera 9.27 and below, safari 2 */ html:first-child #cinco { color: red } /* safari 2-3 */ html[xmlns*=""] body:last-child #seis { color: red } /* safari 3+, chrome 1+, opera9+, ff 3.5+ */ body:nth-of-type(1) #siete { color: red } body:first-of-type #ocho { color: red } /* saf3+, chrome1+ */ @media screen and (-webkit-min-device-pixel-ratio:0) { #diez { color: red } /* iphone / mobile webkit */ @media screen and (max-device-width: 480px) { #veintiseis { color: red } /* safari 2 - 3.1 */ html[xmlns*=""]:root #trece { color: red } /* safari 2 - 3.1, opera 9.25 */ *|html[xmlns*=""] #catorce { color: red } /* everything but ie6-8 */ :root *> #quince { color: red } *+html #dieciocho { color: red } /* firefox only. 1+ */ #veinticuatro, x:-moz-any-link { color: red } /* firefox 3.0+ */ #veinticinco, x:-moz-any-link, x:default { color: red } /***** attribute hacks ******/ /* ie6 */ #once { _color: blue } /* ie6, ie7 */ #doce { *color: blue; /* or #color: blue */ } /* everything but ie6 */ #diecisiete { color/**/: blue } /* ie6, ie7, ie8 */ #diecinueve { color: blue\9; } /* ie7, ie8 */ #veinte { color/*\**/: blue\9; } /* ie6, ie7 -- acts as an !important */ #veintesiete { color: blue !ie; } /* string after ! can be anything */
28. 容器的水準和垂直居中
html代碼如下:
<figure class='logo'> <span></span> <img class='photo'/> </figure>
css代碼如下:
.logo { display: block; text-align: center; vertical-align: middle; border: 4px solid #dddddd; padding: 4px; height: 74px; width: 74px; } .logo * { display: inline-block; height: 100%; vertical-align: middle; } .logo .photo { height: auto; width: auto; max-width: 100%; max-height: 100%; }
29. css陰影
外陰影:
.shadow { -moz-box-shadow: 5px 5px 5px #ccc; -webkit-box-shadow: 5px 5px 5px #ccc; box-shadow: 5px 5px 5px #ccc;
内陰影:
-moz-box-shadow:inset 0 0 10px #000000; -webkit-box-shadow:inset 0 0 10px #000000; box-shadow:inset 0 0 10px #000000;
30. 取消ie文本框的滾動條
textarea { overflow: auto; }
31. 圖檔預加載
32. css重置
(完)