发布网友 发布时间:2022-04-23 07:23
共2个回答
热心网友 时间:2022-05-03 01:54
<div id="idname" style="width:500px;margin:0 auto;">
<table style="width:100%;border:1px solid #ccc;">
<tr>
<td>table</td>
</tr>
</table>
</div>
style="width:500px;margin:0 auto;" 宽度500像素 上下0像素 auto自动 就是剧中
热心网友 时间:2022-05-03 03:12
<html>
<head>
<style type="text/css">
#wrapper {display:table;width:300px;height:300px;background:#ccc;margin:0 auto;color:red;}
#cell{display:table-cell; vertical-align:middle;}
</style>
</head>
<body>
<div id="wrapper">
<div id="cell">
<table style="width:100px;margin:0 auto;background-color:#000000">
<tr>
<td>table</td>
</tr>
</table>
</div>
</div>
</body>
</html>