我想定义一个css,要求所有边框线,统统的没有,我自己写的无效,请指教
.table_noBorder{
border: 0;
}
[解决办法]
.table_noBorder{
border-top-style: none;
border-right-style: none;
border-left-style: none;
border-bottom-style: none
}
发布时间: 2012-03-17 19:06:28 作者: rapoo
我想定义一个css,要求所有边框线,统统的没有,我自己写的无效,请指教
.table_noBorder{
border: 0;
}
[解决办法]
.table_noBorder{
border-top-style: none;
border-right-style: none;
border-left-style: none;
border-bottom-style: none
}