text-decoration
?這個(gè) CSS 屬性是用于設(shè)置文本的修飾線外觀的(下劃線、上劃線、貫穿線/刪除線? 或 閃爍)它是?text-decoration-line
,?text-decoration-color
,?text-decoration-style
, 和新出現(xiàn)的?text-decoration-thickness
?屬性的縮寫。
文本修飾屬性會(huì)延伸到子元素。這意味著如果祖先元素指定了文本修飾屬性,子元素則不能將其刪除。例如,在如下標(biāo)記中?<p>This text has <em>some emphasized words</em> in it.</p>,應(yīng)用樣式
p { text-decoration: underline }
?會(huì)對整個(gè)段落添加下劃線,此時(shí)再添加樣式?em { text-decoration: none }
?則不會(huì)引起任何改變,整個(gè)段落仍然有下劃線修飾。然而,新加樣式?em { text-decoration: overline }
?則會(huì)在<em>標(biāo)記的文字上再添加上這種overline樣式。
https://developer.mozilla.org/zh-CN/docs/Web/CSS/text-decoration
本文摘自 :https://www.cnblogs.com/