我试图实现一个内联块元素,将左对齐,另一个将右对齐,而不改变它们的显示类型。
我想要一个 CSS 版本,否则我也可以使用 jQuery 方法。
我的意思是,我只想显示前两个按钮在左侧对齐,第三个按钮在右侧对齐。
<table>
<thead>
<tr>
<th>
<div style="background-color: lightblue; width: 600px;">
<span style="display: inline-block; height:20px; background-color: red; margin: 5px 3px;float: left;">
Button
</span>
<span style="display: inline-block; height:20px; background-color: red; margin: 5px 3px; float:right;">
Button right
</span>
</div>
</th>
</tr>
</thead>
<tbody>
<tr><td>where did the background of the header cell go? the background is still there if the elements do not float.</td></tr>
</tbody>
</table>