【网页制作】使用广告大图轮换显示的时候,上面的表格自动出现了间隙,如何删除这个间隙?代码在下面!

【网页制作】使用广告大图轮换显示的时候,上面的表格自动出现了间隙,如何删除这个间隙?代码在下面!,第1张

div {
display:horizontal /水平显示/
margin:10px /四周BORDER会有10个像素的空间了,第二个表格marigin:0就可以了/

{
margin:0;
padding:0;
}
这样写,你把这句加到你的css里面,放到第一行,。这个就是把你的网页内容与你的浏览器窗口,的距离重置为0;绝对有效果。

border是控制外边框样式的
cellspacing是各个单元格的间隔
margin是table和其他标签之间的间隔
pading是table与table内的单元格的间隔

请采纳!

<table border="0" cellpadding="2" cellspacing="2"> 把你代码里的2改为:0
<table border="0" cellpadding="0" cellspacing="0">
这样就可以了
或者直接在设计视图选择表格,在属性面板里设置一下间距为: 0 就可以了!你试下!

1:原理:利用给整个table添加背景,然后 通过cellpadding 与cellspacing属性为1,
再次通过设置每个td的背景为白色
就出现了黑色的边框
2:实现代码:

<table cellpadding='1' cellspacing='1' border='0px' width='900px' 
    style='background-color:#cccccc' >
<tr style='height:50px;line-hight:50px; font-size:14px;text-align:center;'>
<td  style='width:150px; background-color:White;'>冲突项选择</td>
<td  style='width:150px; background-color:White;'>冲突类型</td>
<td  style='width:150px; background-color:White;'>推荐原理</td>
<td  style='width:150px; background-color:White;'>可选效应</td>
<td  style='width:200px; background-color:White;'>解决思路描述</td>
</tr>
<tr style='height:50px;line-hight:50px; font-size:14px;text-align:center;'>
<td style='width:150px; background-color:White;'><select style='width:75px'><select><select 
style='width:75px'><select></td>
<td  style='width:150px; background-color:White;'><select 
style='width:75px'><select><select 
style='width:75px'><select></td>
<td  style='width:150px; background-color:White;'>暂无</td>
<td  style='width:150px; background-color:White;'></td>
<td  style='width:200px; background-color:White;'>解决思路描述</td>
</tr>
</table>

Good Luck! 希望能够帮助到你!

如果帮助到你,请采纳! 结贴是一种美德!谢谢!


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/13410299.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-07-30
下一篇 2023-07-30

发表评论

登录后才能评论

评论列表(0条)

保存