我在页面顶部创建了一个菜单栏。 但是当我插入主体时,它只是与我的菜单栏矩形重叠。如何将我的整个文本向下移动以避免重叠?
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<html>
<head>
<title></title>
<style>
div.ex
{
width:300px;
padding:10px;
border:5px solid gray;
background: white;
margin-left:auto;
margin-right:auto;
margin-top: 200px;
position: relative;
}
p.x {
color: white;
font:25px arial,sans-serif;
position:relative;
left:20px;
}
.align {
position: absolute;
left: 8em;
}
body
{
background-color: #ebebeb;
top: 55px;
}
#rectangle {
width: 100%;
height: 70px;
background: deepskyblue;
position: fixed;
top: 0;
left: 0;
bottom: 20;
}
input[type=button]
{
background-color: lawngreen;
color: white;
}
</Style>
</head>
<body>
<div id="rectangle">
<p class="x">Home Page <a href="personal?id=${id}"><input type="button" name="sign up" value="Sign Up"/></a></p>
</div>
<h1>Hello world, this is your home page.</h1>
<div class="ex">
<h1>签订</h1>
<hr>
${errorMessage}
<form action="register" method="post">
<p>
<label>
ID:
<input type="text" name="id" value="${person.id}" class="align"/>
</label>
</p>
<p>
<label>
密码:
<input type="password" name="password" class="align"/>
</label>
</p>
<p>
<label>
确认密码:
<input type="password" name="password" class="align"/>
</label>
</p>
<p>
<label>
姓名:
<input type="text" name="name" value="${person.name}" class="align"/>
</label>
</p>
<p>
<label>
地址:
<input type="text" name="address" value="${person.address}" class="align"/>
</label>
</p>
<p>
<label>
电话:
<input type="text" name="phoneNumber" value="${person.phoneNumber}" class="align"/>
</label>
</p>
<input type="submit" value="注册"/>
</form>
</div>
</body>
</html>
“你好世界,这是你的主页”的句子。已与我制作的蓝色矩形重叠。我想把整个身体都移动下来。我知道有一种方法可以放一堆,但必须有其他方法来做同样的事情。
如果有人能帮助我,我感激不尽。
答案 0 :(得分:1)
你必须更新你的CSS。例如,用60px填充顶部,如下所示:
#rectangle {
width: 100%;
height: 70px;
background: deepskyblue;
position: fixed;
top: 60px;
left: 0;
bottom: 20;
}
答案 1 :(得分:0)
检查此working demo
使用
#rectangle {
width: 100%;
height: 70px;
background: deepskyblue;
position: relative;
top: 0;
left: 0;
bottom: 20;
}
答案 2 :(得分:0)
你可以添加填充顶部:50px;到身体标签
body {
padding-top: 50px
}