发布网友 发布时间:2022-04-23 06:49
共3个回答
热心网友 时间:2022-04-06 12:08
这是因为你css写的问题,你写的css,对所有页面的table标签都加样式了。
解决方案:
把你添加进去的表格,放在div标签里头,
然后你css代码这么写:
<style type="text/css">
.mystyle table
{
border-collapse: collapse;
border: none;
}
.mystyle td
{
border: solid #000 1px;
}
</style>
热心网友 时间:2022-04-06 13:26
你在下面的table加个id属性 ,然后针对id去写CSS就不会影响其它的了。追问能够给出具体代码么 我是小白不懂这个的
追答例如下面的表格
#tab_border{ border-collapse: collapse; border: none; }
#tab_border td { border: solid #000 1px; }
热心网友 时间:2022-04-06 15:01
你不要所有的td都加上边框呀,只在需要的td上添加
td代表的是所有的单元格!追问怎样加呢?我是小白
table
{ border-collapse: collapse;
border: none; }
td
{ border: solid #000 1px; }