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

【九月打卡】第2天 全屏布局

标签:
Html/CSS

课程章节:第12章 全屏布局

主讲老师KingJ


课程内容

  • 全屏布局的概念
  • 全屏布局示例代码
  • 未讲解到的CSS布局

课程收获

通过学习掌握了全屏布局,通过代码演示,更加深刻认识到了全屏布局的使用情景。

  1. 概念
    全屏布局就是指HTML页面铺满整个浏览器窗口,并且没有滚动条。而且还可以跟随浏览器的大小变化而变化。

  2. 代码示例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>全屏布局</title>
    <style>
    html,body{
        margin: 0;
    }
    header{
        width: 100%;
        height: 100px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: lightgray;
    }
    .content{
        position: fixed;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 100px;
        background-color: lightblue;
    }
    .content .left{
        width: 300px;
        height: 100%;
        position: fixed;
        left: 0;
        top: 100px;
        bottom: 100px;
        background-color: lightcoral;
    }
    .content .right{
        height: 100px;
        margin-left: 300px;
        background-color: green;
    }
    footer{
        height: 100px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: lightgray;
    }
    </style>
</head>
<body>
<header></header>
<div class="content">
    <div class="left"></div>
    <div class="right"></div>
</div>  
<footer></footer>
</body>
</html>
  1. 未讲解到的CSS布局(自学)
  • 网格布局
  • 弹性盒子布局

这两种布局需要学习慕课网已有其他课程。


感谢老师的讲解,示例代码实用性非常强,已经在实际开发中用到了,效果非常的赞👍

什么是全屏布局
全屏布局示意图

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消