CSS自己總結
一、CSS樣式:<style type=“text/css”>...</style>
1、<em></em>本來就傾斜
2、font設定文字樣式
3、text-description:修飾文字
屬性:none/underline/overline/line-through/blink
無/下劃線/上劃線/貫穿線(刪除線)/會讓文字閃爍
4、Letter-spacing:字元間距 word-spacing:字母間距
屬性:normal/length(預設/長度單位)
5、文字縮排:text-indent:2em;可以為負值,縮排兩個文字
6、垂直對齊方式:vertical-align:super/sub(上標/下標)
vertical-align:middle/top(居中(如上圖)/居上)
二、CSS控制連結----偽類
a:link{color:#FF0000;text-decoration:none/underline/overline/line-through;}
自定義連線----偽類:
<style type=”text/css”>
a.web:visited{vertical-align:center;text-decoration:underline;color:red;}
p.web:visited{vertical-align:center;text-decoration:underline;color:red;}
</style>
<body>
<a href=”” class=”web”>網頁設計</a>
<p class=”web”>網頁設計
</body>
三、CSS自己總結:
1、p{color:red;font-size:12px;}
2、p:link{color:red;text-decoration:underline;}
3、p:web{color:red;text-decoration:underline;}
4、.web{
font-size:12px;
color:red;
}
5、#One{
font-size:12px;
color:red;
}
<p class=”web” id=”One”>我很棒!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30211155/viewspace-2121769/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- css 總結CSS
- CSS總結CSS
- CSS日常總結CSS
- CSS背景總結CSS
- CSS動畫總結CSS動畫
- css技巧總結CSS
- css居中總結CSS
- css display 總結CSS
- html和css總結HTMLCSS
- css面試題總結CSS面試題
- css中居中總結CSS
- css calc使用總結CSS
- css常用大總結CSS
- CSS縮寫總結CSS
- CSS技巧總結2CSS
- css簡寫總結CSS
- 自己總結物件導向程式設計的總結物件程式設計
- css 元素左右居中總結CSS
- 初學者css每日總結CSS
- css3動畫總結CSSS3動畫
- CSS選擇符總結CSS
- css的常用效果總結CSS
- CSS垂直居中精華總結CSS
- css選擇器總結CSS
- css3d總結CSSS33D
- 自己總結的V$檢視(轉)
- css + css3技術總結報告CSSS3
- CSS知識點面試總結CSS面試
- css各種佈局總結CSS
- 【CSS】Grid 佈局總結CSS
- css3新特性總結CSSS3
- css佈局基礎總結CSS
- 初入HTML/Css的總結HTMLCSS
- CSS3 @media 用法總結CSSS3
- CSS屬性總結之backgroundCSS
- 《CSS重構》閱讀總結CSS
- CSS3總結系列1CSSS3
- css書寫規則總結CSS