我正在学习CSS。我试着把一些文字写成斜体。但是文字并没有斜体。问题出在哪儿?
.bold {
font-weight: bold;
}
.italic {
font-weight: italic;
}

<p>This is some text</p>
<p class="bold">This is some bold text</p>
<p class="italic">This is some italic text</p>
&#13;
答案 0 :(得分:13)
您无法使用名为font-weight
的CSS命令设置斜体。
请尝试使用font-style: italic
。
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
&#13;
<p>This is some text</p>
<p class="bold">This is some bold text</p>
<p class="italic">This is some italic text</p>
&#13;
答案 1 :(得分:4)
您已经为 ITALIC 提供了错误的属性,请尝试使用此属性并提供相同的值
.italic{
font-style:italic;
}
答案 2 :(得分:3)
斜体不是字体重量(它决定了文字的粗体)。这是a font-style
答案 3 :(得分:3)
改为使用font-style: italic;
。
font-weight
负责大胆,并使用数字(100,200,300,...,900)进行设置; “大胆”只是一个特殊的价值。
答案 4 :(得分:3)
italic
是font-style
属性,不是字体粗细:
.italic{
font-style:italic;
}
答案 5 :(得分:2)
那是错的
试试这个:
.italic{font-style:italic;}