美文网首页
经典页面布局学习

经典页面布局学习

作者: Weastsea | 来源:发表于2018-03-08 18:44 被阅读0次

总结几种常用的页面布局

  1. 上中下布局
<!DOCTYPE html>
<!--上中下布局-->
<html lang="en">
<style>
    body {
        margin: 0
    }

    .wrap {
        width: 900px;
        /* 居中 */
        margin: 0 auto; 
        font-size: 20px;
        /* 文字居中 */
        text-align: center;
    }

    #header {
        height: 100px;
        background: #6cf;
    }

    #main {
        height: 500px;
        background: #ccffff
    }

    #footer {
        height: 80px;
        background: #9cf
    }
</style>

<head>
    <meta charset="UTF-8">
    <title>我的修炼</title>
</head>

<body>
    <header id="header" class='wrap'>#header</header>
    <section id="main" class='wrap'>#section</section>
    <footer id="footer" class='wrap'>#footer</footer>
</body>

</html>

页面运行效果:


上中下
  1. 左右两栏布局
<!-- 左右两栏布局 -->
<html lang='en'>

<head>
    <meta charset="UTF-8">
    <title>左右两栏布局</title>
    <style>
        body {
            margin: 0px;
        }

        .wrap {
            width: 900px;
            margin: 0 auto;
        }

        #left {
            width: 200px;
            /* 向左浮动 */
            float: left;
            height: 500px;
            background: #ccffff;
        }

        #right {
            /* 自适应宽度 */
            margin-left: 200px;
            background: #ffcccc;
            height: 500px;
        }
    </style>
</head>
</head>

<body>
    <div class="wrap">
        <aside id="left">left</aside>
        <section id="right">rigth</section>
    </div>
</body>

</html>

页面运行效果:


左右两栏布局
  1. 左右两栏纯浮动实现
    宽度固定,不能自适应
<!-- 纯浮动实现方案 -->
<html lang='en'>

<head>
    <meta charset="UTF-8">
    <title>左右两栏布局</title>
    <style>
        body {
            margin: 0px;
        }

        .wrap {
            width: 900px;
            margin: 0 auto;
            /* 清除浮动 */
            overflow: hidden; 
        }

        #left {
            width: 200px;
            float: left;
            height: 500px;
            background: #ccffff;
        }

        #right {
            width: 700px;
            background: #ffcccc;
            height: 500px;
            float: right;
        }
    </style>
</head>
</head>

<body>
    <div class="wrap">
        <aside id="left">left</aside>
        <section id="right">right</section>
    </div>
</body>

</html>

页面运行效果:

纯浮动实现方案
  1. 左右页眉页脚布局
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>左右页眉页脚布局</title>
    <style>
        .wrap {
            width: 900px;
            margin: 0 auto;
        }
        header{
            height: 200px;
            background: #72418f;
        }
        #main {
            overflow: hidden;
        }
        #left {
            float: left;
            width:200px;
            background: #4f9655;
            height: 400px;
        }
        #right { 
            float: right;
            width: 700px;
            background: #1337ad;
            height: 400px;
        }
        footer {
            height: 180px;
            background: #e6bc02;
            /* clear:both */
        }
    </style>
</head>
<body>
    <div class="wrap">
        <header>header</header>
        <div id='main'>
            <aside id='left'>left</aside>
            <section id='right'>rigth</section>
        </div>
        <footer>footer</footer>
    </div>
</body>
</html>

页面运行效果:

左右页眉页脚布局
  1. 左中右三栏布局
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>左中右3栏布局</title>
    <style>
        .wrap {
            /* 根据屏幕的宽度自适应 */
            width: 80%; 
            margin: 0 auto;
            height: 700px;
        }

        #left {
            float: left;
            width: 200px;
            height: 100%;
            background: #d4a6a6;
        } 

        #center {
            height: 100%;
            margin: 0 210px;
            background: #68d646;
        }

        #right {
            float:right;
            width:200px; 
            height: 100%;
            background: #3014cc
        }
    </style>
</head>

<body>
    <div class="wrap">
        <section id="left"></section>
        <section id="right"></section>
        <section id="center"></section>
    </div>
</body>

</html>

页面运行效果:


左中右
  1. 左中右三栏之双飞翼
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>左中右三栏之双飞翼</title>
    <style>
        .wrap {
            width: 80%;
            margin: 0 auto;
        }

        #main {
            float: left;
            width: 100%;
        }

        #content { 
            background: #e7890e;
            height: 500px;
            margin: 0 200px;
        }

        #left {
            float: left;
            width: 200px;
            height: 500px;
            background: #52d814;
            margin-left: -100%;
        }

        #right {
            float: left;
            width: 200px;
            height: 500px;
            background: #3110a8;
            margin-left: -200px;
        }
    </style>
</head>

<body>
    <div class="wrap">
        <section id="main">
            <div id="content">content</div>
        </section>
        <aside id="left">left</aside>
        <aside id="right">right</aside>
    </div>
</body>

</html>

页面运行效果:


双飞翼布局

7: 左中右三栏加页眉页脚

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>左中右三栏加页眉页脚</title>
    <style>
        .wrap {
            margin: 0 auto;
            width: 80%
        }

        #header {
            height: 100px;
            background: #9dcf80
        }

        #main {
            height: 500px;
        }

        #footer {
            height: 80px;
            background: #5b79df;
        }

        #middle {
            float: left;
            width: 100%;
            background: #262341;
        }

        #left {
            float: left;
            height: 500px;
            width: 200px;
            background: #99609e;
            margin-left: -100%;
        }

        #right {
            float: left;
            height: 500px;
            width: 200px;
            background: #99609e;
            margin-left: -200px;
        }

        #content {
            height: 500px;
            margin: 0 200px;
        }
    </style>
</head>

<body>
    <header id="header" class="wrap"></header>
    <section id="main" class="wrap">
        <div id="middle">
            <section id='content'></section>
        </div>
        <aside id='left'></aside>
        <aside id="right"></aside>
    </section>
    <footer id="footer" class="wrap"></footer>
</body>

</html>

页面运行效果:


左中右三栏加页眉页脚

相关文章

  • 经典页面布局学习

    总结几种常用的页面布局 上中下布局 页面运行效果: 左右两栏布局 页面运行效果: 左右两栏纯浮动实现宽度固定,不能...

  • vue页面经典布局

    一、 上中下 可以直接设置header的高度 可以直接设置footer的高度 main里面的内容写到content...

  • sticky-footer布局的方法

    一、什么是sticky-footer布局?sticky-footer布局是一种经典的布局效果,可概况如下:如果页面...

  • 跟高老师学习Web前端之46.

    今天开始进入新课程的学习---页面布局元素。 页面布局元素包含:display、float、clear、visib...

  • 只要一行代码,实现五种 CSS 经典布局

    页面布局是样式开发的第一步,也是 CSS 最重要的功能之一。 常用的页面布局,其实就那么几个。下面我会介绍5个经典...

  • 盒子模型

    1.盒子模型 页面布局要学习三大核心,盒子模型,浮动和定位。学习好盒子模型能非常好的帮助我们布局页面。 网页布局过...

  • css-grid布局

    css布局是前端页面无法避免的一个问题,经典的圣杯布局,水平/垂直居中问题等,我们以前用到的tabel布局,浮动布...

  • 十六、盒子模型

    一、盒子模型 页面布局要学习三大核心,盒子模型,浮动和定位。学习好盒子模型能非常好的帮助我们布局页面。、 1.1 ...

  • CoordinatorLayout嵌套CoordinatorLa

    页面布局:一级页面布局: 二级页面布局(即在一级页面ViewPager中的Fragment下): 这样布局的目的是...

  • Flutter学习记录-汇总

    Flutter学习记录-布局Flutter学习记录-页面跳转Flutter学习记录-交互Flutter学习记录-基...

网友评论

      本文标题:经典页面布局学习

      本文链接:https://www.haomeiwen.com/subject/bsiyfftx.html