隐性改变display类型,float:left;为什么不设置float也可以设置宽高了?
position:absolute;
/*float:left;为什么不设置float也可以设置宽高了?*/
代码:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>隐性改变display类型</title>
<style>
.container a{
position:absolute;
/*float:left;为什么不设置float也可以设置宽高了?*/
width:200px;
/*height:100px;*/
background:#ccc;
}
</style>
</head>
<body>
<div class="container">
<a href="#" title="">进入课程请单击这里</a>
</div>
</body>
</html>