html中class属性中定义style的问题
发布网友
发布时间:2022-05-06 12:10
我来回答
共2个回答
热心网友
时间:2022-04-19 07:43
style不是用来放在class里面的,而是放在相应的标签里面,如<div style="....."></div>,作为div的一个属性,而class里面就不用放了,html已经通过<style type="text/css"></style>知道这个是一个样式了
热心网友
时间:2022-04-19 09:01
定义和用法
class 属性规定元素的类名(classname)。
class 属性大多数时候用于指向样式表中的类(class)。不过,也可以利用它通过 JavaScript 来改变带有指定 class 的 HTML 元素。
举例
<html>
<head>
<style type="text/css">
h1.intro {color:blue;}
p.important {color:green;}
</style>
</head>
<body>
<h1 class="intro">Header 1</h1>
<p>A paragraph.</p>
<p class="important">Note that this is an important paragraph.</p>
</body>
</html>