xuyanjiayou
<style type="text/css">
        body, html {
            margin: 0px;
        }
        #header {
            background: blue;
            height: 100px;
            width: 100%;
            position:relative; /*父div的位置设置成相对的*/
        }
            #h_menu {
                width:100%;
                height:50px;
                background:yellow;
                /*而子div的位置设置成绝对的,并且下边缘设为0*/
                position:absolute;
                bottom:0;               
            }
        .left {
            width: 15%;    /*这里是百分比或者像素值,对应下面的center就是百分比或者像素值*/
            height: 200px;
            background: red;
            float: left;
        }
        .right {
            width: 15%;  /*这里是百分比或者像素值,对应下面的center就是百分比或者像素值*/
            height: 200px;
            background: pink;
            float: right;
        }
        .center {
            height: 200px;
            background: green;
            /*两种方式均可(一)margin(二)margin-left、margin-right*/
            /*(一)、用这种方式上面的left和right中的width是百分比或者像素值都可以*/
            /*margin: auto; */   
            /*(二)、这里是百分比或者像素值,对应上面的left、right中的width就是百分比或者像素值*/
            margin-left:15%;    
            margin-right:15%;
<div id="header"><div id="h_menu">
                    上_底
                </div>
            </div>
            <div id="middle">
                <div class="left">
                    中左
                </div>
                <div class="right">
                    中右
                </div>
                <div class="center">
                    中间
                </div>
            </div>
            <div id="footer"></div>
        </div>

 

        }
        #footer {
            background: blue;
            height: 100px;
            width: 100%;
        }
    </style>

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-11-29
  • 2021-07-30
  • 2022-03-04
  • 2021-10-11
  • 2022-01-20
  • 2021-11-28
  • 2021-12-09
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-02
  • 2021-12-16
  • 2021-06-21
  • 2021-10-02
相关资源
相似解决方案