侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

平分div

2023-01-11 星期三 / 0 评论 / 0 点赞 / 70 阅读 / 4768 字

<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <style>

. .. . .

<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>    <title></title>    <style>        .wrapper {    width: 100%;    /* 也可以固定宽度 */    height: 200px; }.wrapper > div {    display: inline-block;    /* 如需支持IE8以下版本,用浮动来做 */    width: calc(100% / 3.09);    /* 此处运用了一个css3的表达式,将div三等分,IE8及以上可以支持,当然也可以根据需要设置固定值 */    width: -webkit-calc(100% /3.09); /*3.09 排除margin的宽度*/    width: -moz-calc(100% / 3.09);    height: 100%;}    </style></head><body>    <div class="wrapper">        <div style="background-color:red"></div>         <div style="background-color:green"></div>         <div style="background-color:blue"></div>    </div></body></html>
. .
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>    <title></title>    <style>        .wrapper {    width: 100%;    /* 也可以固定宽度 */    height: 200px; }.wrapper > div {    display: inline-block;    /* 如需支持IE8以下版本,用浮动来做 */    width: calc(100% / 3.09);    /* 此处运用了一个css3的表达式,将div三等分,IE8及以上可以支持,当然也可以根据需要设置固定值 */    width: -webkit-calc(100% /3.09); /*3.09 排除margin的宽度*/    width: -moz-calc(100% / 3.09);    height: 100%;}    </style></head><body>    <div class="wrapper">        <div style="background-color:red"></div>         <div style="background-color:green"></div>         <div style="background-color:blue"></div>    </div></body></html>
. . .. .. .

广告 广告

评论区