我正在尝试创建一个待办事项列表应用,当我到达我要创建无序列表的第二个div时,它没有显示,我似乎不会知道它为什么不显示。我试过擦除div并创建一个enw并编写一个简单的hello消息但是甚至没有显示。我猜测它与第一个div有关,因为它不允许它。
<!doctype html>
<html>
<head>
<title>To Do list</title>
<style type="text/css">
#topBar-div{
background-color: #F44336;
position:absolute;
top: 0px;
width:100%;
height: 150px;
}
body{
margin: 0px;
padding: 0px;
}
h1{
color:white;
margin-left: 300px;
}
#textInput{
height: 30px;
margin-left: 100px;
width: 600px;
font-size: 20px;
color: #8E8E8E;
}
#addButton{
height:37px;
position:relative;
top:-4px;
right: 5px;
width: 70px;
color: grey;
}
#secondBar-div{
color: grey;
height: 350px;
width: 1000px;
}
</style>
</head>
<body>
<div id="topBar-div">
<h1>My To Do List</h1>
<input type="text" value="Title..." id="textInput">
<button id="addButton">Add</button>
</div>
<div id="secondBar-div">
<ul>
<li>Hit the gym</li>
<li>Pay bills</li>
<li>Meet George</li>
<li>Buy eggs</li>
<li>Study</li>
<li>Cook Dinner</li>
</ul>
</div>
<script type="text/javascript">
</script>
</body>
</html>
答案 0 :(得分:2)
你在第一个div(topBar-div)的样式中使用绝对位置,所以你的第二个div(secondBar-div)向上移动,实际上是在第一个div之后。
尝试将此添加到#secondBar-div
margin-top: 150px;