使用css3实现简单的响应式布局(代码)

2025-09-07

本文简单的讲解了如何使用css3实现简单的响应式布局:

css3文件:

*{    margin:0px;    padding: 0px;}.heading,.container,.footing{    margin: 10px auto;}.heading{    height: 100px;    background-color: red;}.left,.right,.main{    height: 300px;    background-color: yellow;}.footing{    height: 100px;    background-color: gray;}@media screen and (min-width: 960px){    .heading,    .container,    .footing{        width:960px;    }    .left,    .main,    .right{        float: left;        height: 500px;    }    .left,    .right{        width:200px;    }    .main{        margin: 0px 5px;        width:550px;    }    .container{        height: 500px;    }}@media screen and (min-width: 600px) and (max-width: 960px){    .heading,    .container,    .footing{        width: 600px;    }    .left,    .main{        float: left;        height:400px;    }    .right{        display: none;    }    .left{        width: 160px;    }    .main{        width: 435px;        margin-left: 5px;    }    .container{        height: 400px;    }}@media screen and (max-width: 600px){    .heading,    .container,    .footing{        width: 400px;    }    .left,    .right{        width: 400px;        height: 100px;    }    .main{        margin-top: 10px;        width:400px;        height:200px;    }    .right{        margin-top: 10px;    }    .container{        height: 420px;    }}

html5文件:

            index01        

立即学习tps://pan.quark.cn/s/cb6835dc7db1" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">前端免费学习笔记(深入)”;

立即学习前端免费学习笔记(深入)”;

立即学习前端免费学习笔记(深入)”;

立即学习前端免费学习笔记(深入)”;

立即学习前端免费学习笔记(深入)”;

本文的代码,可以实现同一个界面,在不同宽度的渲染宽度下显示不同的布局。

标签: 响应式布局网页

本文地址:https://www.lifejia.cn/news/209652.html

免责声明:本站内容仅用于学习参考,信息和图片素材来源于互联网,如内容侵权与违规,请联系我们进行删除,我们将在三个工作日内处理。联系邮箱:cloudinto#qq.com(把#换成@)