zoukankan      html  css  js  c++  java
  • CSS+DIV实现两列布局实例代码

    CSS两列布局,右侧固定,左侧自适应宽度
    <div style="90%; margin:0 auto;">
    <div style="200px; float:right;">这是右侧的内容</div>
    <div style=" margin-right:210px;">这是左侧的内容,自适应宽度</div>
    </div>
    CSS两列布局,左侧固定,右侧自适应宽度
    <div style="90%; margin:0 auto;">
    <div style="150px; float:left;>这是左侧的内容 固定宽度</div>
    <div style=" margin-left:160px;>中间内容,自适应宽度</div>
    </div>
    CSS三列布局,左右宽度固定,中间自适应宽度
    <div style="90%; margin:0 auto;">
    <div style="200px; float:right; >这是右侧的内容 固定宽度</div>
    <div style="150px; float:left; >这是左侧的内容 固定宽度</div>
    <div style=" margin-left:160px;margin-right:210px;>中间内容,自适应宽度</div>
    </div>
    三列等高布局
    <style>
    *{ margin:0; padding:0}
    #content{overflow:hidden}
    #content #left,#content #center,#content #right{margin-bottom:-10000px;padding-bottom:10000px;300px;float:left;}
    #content #left{background:#f00;}
    #content #center{background:#0ff}
    #content #right{background:#f0f}
    </style>
    <div id="content">
    <p id="left">left<br />left<br />left<br />left<br />left<br />left</p>
    <p id="center">center</p>
    <p id="right">right</p>
    </div>

  • 相关阅读:
    Smartforms 设置纸张打印格式
    JVM的垃圾回收算法
    JVM垃圾回收器
    Java类加载过程
    Java内存模型
    计算机模型
    C#----对时间结构DateTime的使用(时间日期的使用)
    C#----我对坐标系的理解和图形转动
    C#----格式化字符串的操作
    其他----
  • 原文地址:https://www.cnblogs.com/z_lb/p/3135283.html
Copyright © 2011-2022 走看看