Div高度的百分比问题

转载自http://blog.163.com/m13864039250_1/blog/static/213865248201391012657561/

总结:Div设置高度为百分比的时候  则外层的元素必须指定height属性

1.简单 外层div

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <style type="text/css">
        html, body {
            width:100%;
            height:100%;
            margin:0px;
            padding:0px;
        }
        #one {
            width:50%;
            height:50%;
            background-color:silver;
            margin:auto;
        }
    </style>
</head>
<body>
    <div id="one"></div>
</body>
</html>
显示结果:
Div高度的百分比问题 - 天马hygj - Nothing
 
2.简单外层div
  <style type="text/css">
        html,body {
            width:100%;
            height:100%;
            margin:0px;
            padding:0px;
        }
        .center {
            width:80%;
            margin:auto;
        }
        #top {
            height:20%;
            background-color:yellow;
        }
        #module {
            height:60%;
            background-color:gray;
        }
        #bottom {
            height:20%;
            background-color:blue;
        }
    </style>
<body>
    <div id="top" class="center"></div>
    <div id="module"  class="center"></div>
    <div id="bottom"  class="center"></div>
</body>
显示结果:
Div高度的百分比问题 - 天马hygj - Nothing
 
3.简单内层div
    <style type="text/css">
        #outOne {
            width:500px;
            height:500px;
            margin:auto;
            background-color:gray;
        }
        #innerOne {
            width:50%;
            height:50%;
            margin:auto;
            background-color:blue;
        }
    </style>
显示结果:
Div高度的百分比问题 - 天马hygj - Nothing
 
4.简单内层div2

<style type="text/css"> html,body { width:100%; height:100%; padding:0px; margin:0px; } #outOne { width:50%; height:50%; margin:auto; background-color:gray; } #innerOne { width:50%; height:50%; margin:auto; background-color:blue; } </style>

<body>        <div id="outOne">         <div id="innerOne"></div>     </div> </body>

显示结果:
Div高度的百分比问题 - 天马hygj - Nothing
 
5.简单内层div3:
     <style type="text/css">
         html,body {
             width:100%;
             height:100%;
             padding:0px;
             margin:0px;
         }
        #outOne {
            width:50%;
            height:50%;
            margin:auto;
            background-color:gray;
        }
        #innerOne {
            width:50%;
            height:50%;
            margin:auto;
            background-color:blue;
        }
         #innerTwo {
             width:60%;
             height:30%;
             margin:auto;
             background-color:red;
         }
    </style>
<body>
       <div id="outOne">
        <div id="innerOne"></div>
           <div id="innerTwo"></div>
    </div>
</body>
显示结果:
Div高度的百分比问题 - 天马hygj - Nothing
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值