两列定宽布局-(来自网易)

<div class="g-bd f-cb">
    <div class="g-mn">
        <p>左侧定宽</p>
    </div>
    <div class="g-sd">
        <p>右侧定宽</p>
    </div>
</div>
<style>
/* 两列定宽布局 */
.g-bd{width:950px;margin:0 auto;}
.g-sd{float:right;width:230px;}
.g-mn{float:left;width:710px;}

</style>

左侧定宽

右侧定宽

原文地址:https://www.cnblogs.com/LoveOrHate/p/4457585.html