html中的div的style和class属性
定义和用法class属性规定元素的类名(classname)。class属性大多数时候用于指向样式表中的类(class)。不过,也可以利用它通过JavaScript来改变带有指定class的HTML元素。举例<html><head><styletype="text/css">h1.intro{color:blue;}p.important{color:green;}</style></head><body><h1>Header1</h1><p>Aparagraph.</p><p>Notethatthisisanimportantparagraph.</p></body></html>
style可以直接写样式 class就给div命名 然后在该html文件外面给这个名字写样式style例子:<div ></div>class例子:<style type="text/css">.xxClass{background:#000;}</style><div ></div>