免费大片黄在线观看yw_能把下面看湿的视频_深爱激动情一区二区三区_黄色耽美小说

義烏網頁制作談CSS text-decoration 屬性

2012-09-20 瀏覽:150
義烏網頁制作談CSS text-decoration 屬性
text-decoration -- 定義文本是否有劃線以及劃線的方式
 取值:none | [ underline || overline || line-through || blink ] | inherit
 none: 定義正常顯示的文本
 [underline || overline || line-through || blink]: 四個值中的一個或多個
 underline: 定義有下劃線的文本
 overline: 定義有上劃線的文本
 line-through: 定義直線穿過文本
 blink: 定義閃爍的文本
示例
p#underline
{
 text-decoration:underline;
}

p#overline
{
 text-decoration:overline;
}

p#line-through
{
 text-decoration:line-through;
}

p#blink
{
 text-decoration:blink;
}

p#underover
{
 text-decoration:underline overline;
}

p#underoverthroughblink
{
 text-decoration:underline overline line-through blink;
}

上一條: 義烏網頁制作講CSS背景
下一條: 義烏網頁設計談CSS white-space 屬性