bootstrap样式问题


怎样可以将bootstrap表格中每一行的border-bottom设置为:none?

HTML bootstrap-table bootstrap

TankMQ 9 years, 3 months ago

重新定义一个类样式 加上!important

loli熊猫 answered 9 years, 3 months ago

自己写样式啊


 tbody > tr > td {
    border-bottom: none;
}

无信条的刺客 answered 9 years, 3 months ago

1、可以用class给他重新添加样式 比如
table .no-border{
border-bottom: none;
}
这里注意下比较具体的选择器会覆盖之前的样式或者直接添加!important也可以
2、
tbody > tr {


 border-bottom: none !important;

}
tbody > tr > td {


 border-bottom: none !important;

}

和平行者PW answered 9 years, 3 months ago

Your Answer