<!--1.可继承性 visible(可见的):hidden --掩藏,但是结构还保存 cursor(光标样式):pointer(手指)crosshair(十字架)
一般是文字控制属性
内联标签:line-height color font-family font-size font-weight text-decoration(去除a标签的下滑线):none
块级标签:text-indent(首行缩进):3% text-bottom
列表标签:<ul><li> list-style:none(去除列表的样式)
-->
<!--2.不可继承性 如:display margin border padding background:url("image.png")属性
overflow:auto hidden
float
-->
<html>
<head>
<meta charset="UTF-8">
<title>CSS属性</title>
<style>
body{
/*字体加粗*/
font-weight:body;
}
a{
text-decoration:no
}
</style>
</head>
<body>
<div>11111111111</div>
<span>2222222222</span>
<p>33333333333333</p>
<a href="#">百度一下</a>
</body>
</html>