【发布时间】:2015-01-03 23:51:27
【问题描述】:
我有两个水平对齐的元素。 我希望右侧具有动态宽度,左侧占用与左侧一样多的空间。我该怎么做?
SeJSFiddle
或代码
<div class="wrapper">
<div style="background:red;" class="one">hello</div>
<div style="background:blue" class="two">dude</div>
</div>
.wrapper > div {
border: 1px yellow solid;
display: table-cell;
height:80px;
}
.one {
width: 100%;
}
.two {
width: 100px;
}
【问题讨论】: