当我没有给img设置宽高的时候,我的herd没有设置高度,没有限制,为什么图片完全显示
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{margin: 0;padding: 0;}
.zhuti{width: 100%;}
.herd{
width: 100%;
background: #000000;
overflow: hidden;
zoom: 1;
}
.li1{
color: ghostwhite;
float: left;
margin-right: 20px;
font-size: 30px;
font-weight: 600;
height: 80px;
padding: 0 20px;
}
ul{
list-style: none;
}
a{
text-decoration: none;
}
.left{
float: left;
width: 200px;
height: 80px;
}
.ul1{
float: right;
}
img{
width: 200px;
height: 80px;
}
</style>
</head>
<body>
<div class="zhuti">
<div class="herd">
<div class="left">
<a href="#"><img src="http://img1.sycdn.imooc.com/climg//58c0d2d900016ce303000100.png"></a>
</div>
<ul class="ul1">
<li class="li1">的士</li>
<li class="li1">的士</li>
<li class="li1">的士</li>
<li class="li1">的士</li>
<li class="li1">的士</li>
</ul>
</div>
</div>
</body>
</html>
正在回答
你好,是因为.left盒子设置了固定高度,图片的高度大于盒子的高度,所以显示不完全:
去掉就会显示出来了,可以试一下。
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星