美文网首页
设置div的高度百分比不生效

设置div的高度百分比不生效

作者: hello大象 | 来源:发表于2017-12-19 11:11 被阅读0次

    在最根层html{width:100%;} 页面中其他元素才能用百分比

      <style type="text/css">
           html, body {
               width:100%;
               height: 100%;
               margin:0;
               padding:0;
               background: #000000;
           }
           #one {
               height:100%;
               /*width: 100%;*/
               /*border: 1px solid green;*/
               position:fixed;
           }
           #oneRight {
               height:100%;
               /*width: 100%;*/
               /*border: 1px solid green;*/
               /*position:static;*/
               float: right;
           }
       </style>
    

    相关文章

      网友评论

          本文标题:设置div的高度百分比不生效

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