强元素变为斜体

Strong elements become italic

我应该"add a new rule so that strong elements in the html file are displayed italic" 这是我的 css:

body{
    font-family: verdana, sans-serif;
    font-size: small;

}

h1{
    font-size: 1.5em;
    font-variant: small-caps;
}

h2{
    font-weight: bold;
    font-family: georgia;

}

dt{
    font-weight: bold;
}

strong{
    font-style: italic;
}

我尝试使用 bold{ }strong{ },但它们都无法正常工作。 提前致谢。

strong和b的font-style可以在CSS中设置样式。

b { 
    font-style: italic;
} 

strong {
    font-style: italic;
}

这 CSS 做你想做的事。

查看 fiddle - http://jsfiddle.net/tdmjb4b7/

试试这个可能对你有帮助

 dt, strong, b, h1, h2
 {
     font-style: italic;
 }