争怎路由网/网站教程/内容

css完成2边固定中间自适应布局的4种常用方法

网站教程2024-01-24 阅读
网页的本质就是超级文本标记语言,通过结合使用其他的Web技术(如:脚本语言、公共网关接口、组件等),可以创造出功能强大的网页。因而,超级文本标记语言是万维网(Web)编程的基础,也就是说万维网是建立在超文本基础之上的。超级文本标记语言之所以称为超文本标记语言,是因为文本中包含了所谓“超级链接”点。
本篇文章给大家带来的内容是关于css实现两边固定中间自适应布局的四种常用方法,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

解析四种常用方法以及原理:浮动、浮动内嵌 div、定位、flex。

浮动

<style type="text/css">
    .wrap {background: #eee; padding: 20px; }
    p {margin: 0; }
    .left {width: 200px; height: 200px; float: left; background: coral; }
    .right {width: 200px; height: 200px; float: right; background: lightblue; }
    .middle {margin: 0 200px; background: lightpink; }
</style>
<div class="wrap">
    <p class="left">我在左边</p>
    <p class="right">我在右边</p>
    <p class="middle">我排最后,但是跑到中间来了</p>
</div>

4275190770-5bc600687071c_articlex.jpg

原理:

浮动内嵌div

<style type="text/css">
    .wrap {background: #eee; padding: 20px; }
    p {margin: 0; }
    .left {width: 200px; height: 200px; float: left; background: coral; margin-left: -100%;}
    .right {width: 200px; height: 200px; float: left; background: lightblue; margin-left: -200px;}
    .middle {width: 100%; height: 200px;float: left; background: lightpink; }
    span{
        display: inline-block;
        margin: 0 200px;
    }
</style>

<div class="wrap">
    <p class="middle">
        <span class="inner">
            我在中间
        </span> 
    </p>
    <p class="left">我在左边</p>
    <p class="right">我在右边</p>
</div>

2328199333-5bc6006873b1c_articlex.jpg

原理:

定位

<style type="text/css">
    .wrap {background: #eee; position: relative;}
    p {margin: 0; }
    .left {width: 200px; height: 200px; background: coral; position: absolute;left: 0; top: 0;}
    .right {width: 200px; height: 200px; background: lightblue; position: absolute;right: 0; top: 0;}
    .middle {height: 200px; background: lightpink; margin: 0 200px;}
</style>

<div class="wrap">
    <p class="middle">我在中间,我用 margin 抵消左右两块定位元素占据空间</p>
    <p class="left">我在左边,我是定位元素</p>
    <p class="right">我在右边,我是定位元素</p>
</div>

434787420-5bc60068745d3_articlex.jpg

原理:

flex

<style type="text/css">
    .wrap {background: #eee; display: flex}
    p {margin: 0; }
    .left {width: 200px; height: 200px; background: coral; }
    .right {width: 200px; height: 200px; background: lightblue; }
    .middle {height: 200px; background: lightpink; flex: 1;}
</style>

<p class="wrap">
    <p class="left">我在左边</p>
    <p class="middle">我在中间,flex: 1 自动占据剩余空间</p>
    <p class="right">我在右边</p>
</p>

原理:

flex 布局,子元素默认水平排列。

flex: 0 1 auto -> 默认,占据空间不跟随父级放大,跟随变小,自身本来宽度

flex: 1 1 auto -> auto,占据空间跟随父级放大,同时跟随变小,自身本来宽度

flex: 0 0 auto -> none,占据空间不跟随父级放大,同时也不跟随变小,自身本来宽度

flex: 1 1 1 -> auto,占据空间跟随父级放大,同时跟随变小,并且自动占满剩余空间

以上就是css实现两边固定中间自适应布局的四种常用方法的详细内容,更多请关注php中文网其它相关文章!


网站建设是一个广义的术语,涵盖了许多不同的技能和学科中所使用的生产和维护的网站。



……