css中的五种常见页面布局
程序员文章站
2022-03-12 21:05:37
...
公共样式部分代码:
(推荐教程:CSS教程)
html * { margin: 0; padding: 0; } .layout { margin-bottom: 20px; } .layout article { width: 100%; } .layout article > div { min-height: 100px; } .layout article .left { width: 300px; background: red; } .layout article .center { background: orange; } .layout article .right { width: 300px; background: blue; }
float布局
<!-- 浮动布局 --> <section class="layout float"> <style> .layout.float .left { float: left; } .layout.float .right { float: right; } </style> <article class="left-center-right"> <div class="left"></div> <div class="right"></div> <div class="center"> <h2>这是float布局</h2> <p>这是一段文字</p> <p>这是一段文字</p> </div> </article> </section>
absolute布局
<!-- 定位布局 --> <section class="layout absolute"> <style> .layout.absolute .left-center-right > div { position: absolute; } .layout.absolute .left { left: 0; } .layout.absolute .center { left: 300px; right: 300px; } .layout.absolute .right { right: 0; } </style> <article class="left-center-right"> <div class="left"></div> <div class="center"> <h2>这是absolute布局</h2> <p>这是一段文字</p> <p>这是一段文字</p> </div> <div class="right"></div> </article> </section>
flex布局
<!-- flex布局 --> <section class="layout flex"> <style> .layout.flex { margin-top: 140px; } .layout.flex .left-center-right{ display: flex; } .layout.flex .center { flex: 1; } </style> <article class="left-center-right"> <div class="left"></div> <div class="center"> <h2>这是flex布局</h2> <p>这是一段文字</p> <p>这是一段文字</p> </div> <div class="right"></div> </article> </section>
table布局
<!-- table布局 --> <section class="layout table"> <style> .layout.table .left-center-right { display: table; height: 100px; } .layout.table .left-center-right > div{ display: table-cell; } </style> <article class="left-center-right"> <div class="left"></div> <div class="center"> <h2>这是table布局</h2> <p>这是一段文字</p> <p>这是一段文字</p> </div> <div class="right"></div> </article> </section>
grid布局
<!-- grid布局 --> <section class="layout grid"> <style> .layout.grid .left-center-right { display: grid; grid-template-columns: 300px auto 300px; } </style> <article class="left-center-right"> <div class="left"></div> <div class="center"> <h2>这是grid布局</h2> <p>这是一段文字</p> <p>这是一段文字</p> </div> <div class="right"></div> </article> </section>
以上就是css中的五种常见页面布局的详细内容,更多请关注其它相关文章!
上一篇: HTML5弹性布局有什么优点
下一篇: css怎么实现瀑布流布局
推荐阅读
-
如何设置网页中的一段文字,使它的宽度是页面宽度的62%且能自动换行?_html/css_WEB-ITnose
-
怎么控制页面中某个元素的滚动_html/css_WEB-ITnose
-
结合CSS3的布局新特征谈谈常见布局方法_html/css_WEB-ITnose
-
使用css中的page-break-after属性来实现WEB页面强制分页打印
-
CSS中几种常见的注释
-
做网页中需要掌握的八个CSS布局技巧
-
css3的@media属性实现页面响应式布局示例代码
-
浅谈CSS3中display属性的Flex布局的方法
-
ASP.NET2.0:页面中链入的CSS、js文件带中文时需注意
-
Web页面中八种创建多列等高(等高列布局)的实现技术