<!DOCTYPE html >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>行内元素的display:inline-block属性</title>
</head>
<style type="text/css">
.box {
width:20%;
height:50px;
margin:0 0 10px 10px;
border:solid 3px #f00;
}
.sty-lb {
display:inline-block;
}
.divbox{width:200px;height:50px;;border:solid 3px blue;zoom:1;display:inline-block;*display:inline}//块级元素
</style>
<body>
<span class="box sty-lb">行内元素的display:inline-block属性</span>
<span class="box sty-lb">行内元素的display:inline-block属性</span>
<span class="box sty-lb">行内元素的display:inline-block属性</span>
<span class="box sty-lb">行内元素的display:inline-block属性</span>
<div class="divbox">111111111111</div>
<div class="divbox">222222222222</div>
<div class="divbox">222222222222</div>
<div class="divbox">222222222222</div>
</body>
</html>
兼容IE6,7的inline-block
最新推荐文章于 2024-11-04 09:11:09 发布