div实现两列等高

Posted 川衡

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div实现两列等高相关的知识,希望对你有一定的参考价值。

参考代码如下

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>两列等高</title>
        <style type="text/css">
            html,bodywidth: 100%;height: 100%;
            *margin: 0;padding: 0;
            .container

            
            .left,.right
                width: 200px;
                background-color: #F2F0F1;
            
            .left
                min-height: 50px;
                position: relative;
            
            .right
                background-color: red;
                position: absolute;
                right: -200px;
                top: 0;
                height: 100%;
            
        </style>
    </head>
    <body>
        <div id="container">
            <div class="left">
                tttttttt<br/>
                pppppppp,<br/>
                tttttttt<br/>
                pppppppp,<br/>
                tttttttt<br/>
                pppppppp,<br/>
                tttttttt<br/>
                pppppppp,<br/>
                tttttttt<br/>
                pppppppp,<br/>
                tttttttt<br/>
                pppppppp,<br/>
                tttttttt<br/>
                pppppppp,<br/>
                <div class="right"></div>
            </div>
        </div>
    </body>
</html>

以上是关于div实现两列等高的主要内容,如果未能解决你的问题,请参考以下文章

如何实现两列等高效果?

JQuery 实现两列等高并自适应高度

常用布局的实现(两列布局三列适应布局,两列等高适应布局等)

布局:左宽度固定,右边自适应

纯div css实现的左右两个等高div

css实现内容不相同的左右两个div等高