HTML列表中的第一个列表项看起来略高

时间:2013-03-19 08:19:05

标签: html css list html-lists

我刚刚开始做一个基本的页面布局,当我再也找不到一个我无法理解的问题时。 为什么我的页面左侧有一个列表框高于其他列表框? 任何信息将不胜感激。感谢

<html>

<head>
<style>
body{
background-color:#5187B9;
font-size:120%;
color:#666666;
}
li{
list-style:none;
}
#wrapper{
margin:0 auto;
width:960px;
}
.top{
width:100%;
}
.block01{
clear:both;
background-color:white;
border-radius:4px;
border:1px solid white;
}
.menu{
width:100%;
height:45px;
padding-top:5px;
background-color:#E8EFF6;
}
.menu ul{
height:40px;
margin-left:20px;
}
.menu li{
float:left;
margin-left:5px;
margin-right:5px;
padding:5px;
background-color:#8888F6;
color:#277098;
}
.block02{
clear:both;
width:100%;
color:white;
}
.block02 ul{
width:100%;
clear:both;
color:black;
}
.block02 li{
float:left;
height:300px;
width:120px;
border-radius:4px;
border:1px solid white;
background-color:white;
}
.block02 ul .list02{
margin-left:20px;
margin-right:20px;
}
.block03{
clear:both;
width:100%;
background-color:white;
padding:10px;
}
</style>
</head>

<body>
<div id="wrapper">
<div class="top">
</div>
    <div class="block01">
    <div class="menu">
    <ul>
    <li>ホーム</li>
    <li>特徴</li>
    <li>プラン</li>
    </ul>
    </div>

    </div>

    <div class="block02">
    <ul>
    <li class="list01"></li>
    <li class="list02"></li>
    <li class="list03"></li>
    </ul>
    </div>

    <div class="block03">

    </div>

</div>

</body>
</html>

3 个答案:

答案 0 :(得分:4)

删除clear:both

上的.block02 ul

答案 1 :(得分:2)

这是因为CSS中的clear属性。

  

clear属性指示元素框的哪些边可能与先前的浮动框不相邻。

删除clear属性会生成您需要的结果。

Fiddle

P.S。:我已将身高更改为250px

答案 2 :(得分:0)

尝试将.block02 ul

的margin-top设置为0