比如说 本章 我想把<h1>勇气</h1>改为piue 30px的 怎么修改呢?
在style部分设置类选择器
然后在<h1></h1>中使用选择器设置的样式。
加粗为修改部分
<style type="text/css">
* {color:red;}
*{font-size:20px;}
.size{font-size:100px;}
</style>
</head>
<body>
<h1 class="size" >勇气</h1>
在后面直接用其他选择器就可以吧
h1{
color:blue;
font-size:30px;
}