本文介绍了容器修正宽度。中心div动态宽度。想要左右divs平均填充剩余宽度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有三列...所有三个的组合宽度是固定的..第二(中心)列将有动态内容..我需要左右列来平等地填充剩余空间(容器宽度 - 中心列动态宽度)。

Have Three columns..Combine width of all three is fixed.. 2nd ( center ) column will have dynamic content.. I need left and right column to fill out remaining space ( container width - center column dynamic width )equally.

示例:

 c>在 .container 上,给出相同的容器 text-align:center ,使中心列 inline-block 并重新启动后台和 text-align 窍门。

Simply setting the background on the .container, giving the same container text-align: center, making the center column inline-block and reseting the background and text-align on it will do the trick.

HTML

<div class='container'>
    <div class='c'>booooo add remove text here</div>
</div>

CSS

.container {
    background: #ccc;
    text-align: center;
}
.c {
    display: inline-block;
    background: white;
    text-align: left;
}

这篇关于容器修正宽度。中心div动态宽度。想要左右divs平均填充剩余宽度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 06:53