我想知道Css字体样式和文本修饰属性之间的区别。
我可以使用font-style:italic;
还是text-decoration:italic;
?哪一个是正确的,有什么区别?
答案 0 :(得分:0)
text-decoration: italic
是无效的标记
您可以在下方找到text-decoration
和font-style
的有效值。
text-decoration
可以包含以下值:
none
underline
line-through
overline
font-style
可以有的地方:
normal
italic
oblique
演示风格:
<p style="text-decoration: none">This is a text (text-decoration: none)</p>
<p style="text-decoration: underline">This is a text (text-decoration: underline)</p>
<p style="text-decoration: line-through">This is a text (text-decoration: line-through)</p>
<p style="text-decoration: overline">This is a text (text-decoration: overline)</p>
<p style="font-style: normal">This is a text (font-style: normal)</p>
<p style="font-style: italic">This is a text (font-style: italic)</p>
<p style="font-style: oblique">This is a text (font-style: oblique)</p>