首页 > 其他 > 详细

左栏固定,右栏自适应

时间:2018-01-26 23:25:16      阅读:189      评论:0      收藏:0      [点我收藏+]

方法1:

<style>

        body{ margin:0; height:100%}

        html{ height:100%} /*兼容firefox的div高度100%*/

        #left{ position:absolute; top:0; left:0; width:200px; height:100%; background-color:#CCCCCC}

        #right{ margin-left:200px; height:100%; background-color:#0099FF}

</style>

方法2:

<style>

        body{ margin:0; height:100%}

        html{ height:100%} /*兼容firefox的div高度100%*/

        #left{ width:150px; height:100%; float:left;  ">#right{ height:100%; background-color: green }

</style>

方法3:

<style>

        body{ margin:0; height:100%}

        html{ height:100%} /*兼容firefox的div高度100%*/

        #left{ width:200px; height:100%; background-color:#CCCCCC; float:left}

        #right{ width:100%; height:100%; background-color:#0099FF}

</style>

左栏固定,右栏自适应

原文:https://www.cnblogs.com/cdx0/p/css_twoPart.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!