【发布时间】:2012-07-04 19:09:14
【问题描述】:
我为 p 标签创建了一个 CSS。我不知道为什么font:bold 和font-size=15 不起作用。这意味着:尽管我更改了font-size 属性的数量,但此类中的字体不加粗也不改变大小。但其他一些属性效果很好,例如:color 或 text-decoration
这是我的 HTML5 页面的一小部分:
1) CSS 页面
<style>
.title{
font: bold;
font-size: 15;
color: red;
text-decoration: underline ;
}
</style>
2) HTML 页面:
<div class="question">
<p class="title">
Here is my title
</p>
</div>
请帮帮我。
谢谢:)
【问题讨论】: