为了账号安全,请及时绑定邮箱和手机立即绑定

做了一个最精简模型,看着更容易理解些

如题,如题

正在回答

2 回答

感觉你没有理解讲的东西,要的就是内容超出。。去看看实际的样子和我们原生APP的写法区别。。你这样写的,和视频的前一个小DEMO就是一样的了。。没有意义~

0 回复 有任何疑惑可以回复我~
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>绝对定位整体布局</title>
    <style type="text/css">
    body {
        margin: 0;
    }
    
    html,
    body,
    .page {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .page {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .header,
    .footer,
    .content {
        position: absolute;
        left: 0;
        right: 0;
    }
    
    .header {
        top: 0;
        height: 45px;
        background-color: blue;
    }
    
    .content {
        top: 45px;
        bottom: 50px;
        background-color: gray;
    }
    
    .footer {
        bottom: 0;
        height: 50px;
        background-color: blue;
    }
    </style>
</head>

<body>
    <div class="page">
        <div class="header">header</div>
        <div class="content">content</div>
        <div class="footer">footer</div>
    </div>
</body>

</html>


4 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

做了一个最精简模型,看着更容易理解些

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信