版權聲明:本文版權歸原作者所有譯者僅供國內讀者參考
本文概要:最常用的CSS Trick,諸如圓角、首字下沉等等。
之前有篇譯介「8個一句話CSS小訣竅」介紹了8個非常使用的一句話CSS小技巧,這週再給大家帶來一篇類似的文章,介紹了一些最常用的CSS Trick,或者叫做CSS小把戲。當然我相信每個設計師都會有一些個人的偏好,我個人對文中的一些小把戲就不會太感冒。
1. 不使用圖片的圓角效果
<div id=”container”>
<b class=”rtop”>
<b class=”r1″></b> <b class=”r2″></b> <b class=”r3″></b> <b class=”r4″></b>
</b>
<!–content goes here –>
<b class=”rbottom”>
<b class=”r4″></b> <b class=”r3″></b> <b class=”r2″></b> <b class=”r1″></b>
</b>
</div>
.rtop, .rbottom{display:block}
.rtop *, .rbottom *{display: block; height: 1px; overflow: hidden}
.r1{margin: 0 5px}
.r2{margin: 0 3px}
.r3{margin: 0 2px}
.r4{margin: 0 1px; height: 2px}
(很多人喜歡運用這樣的圓角技巧,但我個人不是很喜歡,雖然不用去做圓角的圖片,但是多出的這些tag總覺得很多餘)
2. 樣式化列表
<ol>
<li>
<p>This is line one</p>
</li>
<li>
<p>Here is line two</p>
</li>
<li>
<p>And last line</p>
</li>
</ol>
ol {
font: italic 1em Georgia, Times, serif;
color: #999999;
}
ol p {
font: normal .8em Arial, Helvetica, sans-serif;
color: #000000;
}
這個效果我也是很喜歡的,可以在序號上套用不同的字體。
3. 無表格表單
4. 雙引號技巧
5. 漸變字效果
6. 垂直居中
更多內容參考原文
10. 首字下沉
<p class=”introduction”> This paragraph has the class “introduction”. If your browser supports the pseudo-class “first-letter”, the first letter will be a drop-cap. </p>
p.introduction:first-letter {
font-size : 300%;
font-weight : bold;
float : left;
width : 1em;
}