创建灵活的宽度和布局布局高度
希望你们能帮助我。 我面临一些CSS布局问题。 我希望布局具有与使用 div 的表格相同的自动扩展宽度和高度的效果。 我想要的效果与下面的例子相同。宽度和高度的布局是动态的,并且里面的内容都在同一水平线上。
<table>
<tr>
<th>ipsum dolor sit amet</th>
<td>
<ul>
<li>apple</li>
<li>orange</li>
<li>mango</li>
</ul>
</td>
</tr>
<tr>
<th>ipsum</th>
<td>
<ul>
<li>apple</li>
<li>orange</li>
<li>mango</li>
</ul>
</td>
</tr>
</table>
只用 CSS 可以做到吗? 感谢您的帮助,如果您能给一些提示...
hopefully you guys can help me.
i facing some css layout problem.
i want the layout have same effect of auto-expand width and height as table with using div.
the effect i want is same as below example. layout with the width and height is dynamic and the content inside all at same horizontal line.
<table>
<tr>
<th>ipsum dolor sit amet</th>
<td>
<ul>
<li>apple</li>
<li>orange</li>
<li>mango</li>
</ul>
</td>
</tr>
<tr>
<th>ipsum</th>
<td>
<ul>
<li>apple</li>
<li>orange</li>
<li>mango</li>
</ul>
</td>
</tr>
</table>
is it possible to do it with only CSS?
thanks for help if you could give some hints...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你使用DIV而不是table,table不够灵活,当你在不同的浏览器上测试你的HTML页面时你会遇到问题。
I recommend you to use DIV instead of table, table is not enough flexible and you will face problem when you test your HTML page on different browsers.