我应该“添加一条新规则,以便html文件中的强大元素显示为斜体” 这是我的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{ }
非正常工作。
提前致谢。
答案 0 :(得分:2)
strong和b的字体样式可以在CSS中设置样式。
b {
font-style: italic;
}
strong {
font-style: italic;
}
这个CSS做你想要的。
查看小提琴 - http://jsfiddle.net/tdmjb4b7/
答案 1 :(得分:0)
试试这可能会对你有所帮助
dt, strong, b, h1, h2
{
font-style: italic;
}