我使用twitter启动一些web应用程序,我被迫做(我不是一个Web开发人员),我找不到一种方法来禁用表行行。
从http://twitter.github.com/bootstrap/#tables可以看出,默认表格样式包含行行。
问候,
解决方法
将它添加到您的主CSS:
table td { border-top: none !important; }
对于较新版本的引导使用:
.table th,.table td { border-top: none !important; }