关于html5的问题

加粗字体和倾斜的字体依然存在
问题:

img


我写的代码以及编译的结果:

img

img

回答如下,记得采纳哦!
当然在哇,你这个样式没有改变字体粗壮和倾斜,依然会按照标签样式来。字体粗细是font-weight,不是weight
css中要加入:

font-style: normal; /* 将字体样式改为正常 */
font-weight: normal; /* 将字体粗细改为正常 */

即:

* {
  font-size: 18px;
  color: red;
  font-style: normal; /* 将字体样式改为正常 */
  font-weight: normal; /* 将字体粗细改为正常 */
}

修改如下试试:

* {
  font-size: 18px;
  font-weight: normal;
  color: red;
  font-style: normal;
}