span标签设置多个内容
如果用span对于多个对象进行设置呢?
如果用span对于多个对象进行设置呢?
2016-10-19
如果是设置一样的样式就可以用类选择器
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
.A{color:;font-size:;}<!-- 对A类进行设置 -->
</style>
</head>
<body>
<span class="A">hello world</span><!-- 设为A类 -->
<span class="A">my first web</span><!-- 设为A类 -->
</body>
</html>举报