css中的font-style和text-decoration属性

时间:2017-11-01 13:17:19

标签: css3

我想知道Css字体样式和文本修饰属性之间的区别。

我可以使用font-style:italic;还是text-decoration:italic;?哪一个是正确的,有什么区别?

1 个答案:

答案 0 :(得分:0)

text-decoration: italic是无效的标记 您可以在下方找到text-decorationfont-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>