目前有两个错误,一个是楼上两位说的 . 问题
不过我认为这可能是你复制时候没复制上来
另一个就是你在css设置下边框的颜色和样式,
而有在table里设置了border="0",这样就冲突了,根据优先原则,就出现问题了
建议在css中加如
border-bottom-size: 1px;
并且删掉border="0"
xuxian {
border-top-style: none;
border-right-style: none;
border-bottom-style: dashed;
border-left-style: none;
border-bottom-color: #000000;
}
这里的代码引用错了。应该是
.xuxian {
border-top-style: none;
border-right-style: none;
border-bottom-style: dashed;
border-left-style: none;
border-bottom-color: #000000;
}
==========================
xunxian前面要加个点。
这是css里面的规定:class="xunxian" 想调用要这样:.xunxian !
如果是 id="xunxian" 想调用要这样: #xunxian !
id跟class的区别是 id是唯一的,一个网页文档里面只能有一个同样的id名字,但class可以有很多个。
xuxian {
border-top-style: none;
border-right-style: none;
border-bottom-style: dashed;
border-left-style: none;
border-bottom-color: #000000;
}
错了,前面应中点,代码还可以简化,如下
.xuxian {
border-style: none;
border-bottom:1px dashed #000000;
}