我在页面顶部制作了一个菜单栏。
但是当我插入主体时,它只是与菜单栏矩形重叠。如何向下移动我的整个正文以避免重叠?

<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>


句子“ Hello world,这是您的主页”。与我制作的蓝色矩形重叠。我想将整个身体下移。我知道一种方法可以放一堆,但是必须有其他方法可以做同样的事情。

我感谢有人能帮助我。

最佳答案

您必须为此更新CSS。例如,通过像这样用60px填充顶部:

#rectangle {
        width: 100%;
        height: 70px;
        background: deepskyblue;
        position: fixed;
        top: 60px;
        left: 0;
        bottom: 20;
    }

07-24 18:11