如何使用CSS样式取代table的cellspacing属性
发布网友
发布时间:2022-04-06 12:34
我来回答
共3个回答
热心网友
时间:2022-04-06 14:03
cellspacing和padding属性重叠了用padding代替就可以了
热心网友
时间:2022-04-06 15:21
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
table{csp:expression(this.cellSpacing=10)}
-->
</style></head><body><table > <tr> <td width="21">1/1</td>
<td width="21">1/2</td> </tr> <tr> <td>2/1</td><td>2/2</td> </tr></table>
</body>
</html>
热心网友
时间:2022-04-06 17:13
border-collapse: collapse;