作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果table1的位置居中且table1的宽度大于table2,如何将table2放在table1的下面?
HTML
<table id="table1" align="center" style="width:150px;">
<tr>
<td height="50">Table 1</td>
</tr>
</table>
<table id="table2">
<tr>
<td height="50">Table 2</td>
</tr>
</table>
CSS
#table1 {
background: #ccc
}
#table2 {
background: #666;
}
问题图片
最佳答案
...将它们都放在父容器元素中并应用以下属性:
.parentdiv {
display:table;
width:auto;
margin:0 auto;
}
关于javascript - 如何将table2放在table1下面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48602860/
我是一名优秀的程序员,十分优秀!