纯CSS实现三列DIV等高布局

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <style type="text/css">
        *
        {
            margin: 0;
            padding: 0;
        }
        #wrap
        {
            overflow: hidden;
            width: 1000px;
            margin: 0 auto;
        }
        #left, #center, #right
        {
            margin-bottom: -10000px;
            padding-bottom: 10000px;
        }
        #left
        {
            float: left;
            width: 250px;
            background: #00FFFF;
        }
        #center
        {
            float: left;
            width: 500px;
            background: #FF0000;
        }
        #right
        {
            float: right;
            width: 250px;
            background: #00FF00;
        }
    </style>
</head>
<body>
    <div id="wrap">
        <div id="left">
            <p>
                left</p>
            <p>
                left</p>
            <p>
                left</p>
            <p>
                left</p>
            <p>
                left</p>
        </div>
        <div id="center">
            <p>
                center</p>
            <p>
                center</p>
            <p>
                center</p>
            <p>
                center</p>
            <p>
                center</p>
            <p>
                center</p>
            <p>
                center</p>
            <p>
                center</p>
            <p>
                center</p>
        </div>
        <div id="right">
            <p>
                right</p>
            <p>
                right</p>
            <p>
                right</p>
        </div>
    </div>
</body>
</html>

纯CSS实现三列DIV等高布局,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。