我想重置引导表的边框,它适用于三个边框{上、右、下},但在左边我仍然看到一些半径,我怎样才能删除这个半径?
你可以找到我的代码:
http://jsfiddle.net/yabasha/TGBtF/6/
.table {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
}
td.tcenter {
text-align: center;
width: 144px;
height: 90px;
display: table-cell;
vertical-align: middle;
}
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<table class="table table-bordered">
<tr>
<td class="tcenter"><img style="-webkit-user-select: none" src="https://mdn.mozillademos.org/files/3563/HTML5_Logo_128.png"></td>
<td class="tcenter"><img style="-webkit-user-select: none" src="https://lh5.googleusercontent.com/-8UcXZv4ucmI/AAAAAAAAAAI/AAAAAAAAAEk/4pvjZh57uqA/photo.jpg"></td>
</tr>
<tr>
<td class="tcenter"><img style="-webkit-user-select: none" src="http://wijmo.com/files/img/html5-blue.png"></td>
<td class="tcenter"><img style="-webkit-user-select: none" src="http://www.html5tests.com/img/blockdevice.png"></td>
</tr>
<tr>
<td class="tcenter"><img style="-webkit-user-select: none" src="http://www.html5developer.opensourcetechnologies.com/images/mobile_app.png"></td>
<td class="tcenter"><img style="-webkit-user-select: none" src="http://0.gravatar.com/avatar/8e88914e9976114748db6f525144b609?s=64&d=retro&r=R"></td>
</tr>
</table>
</div>
</div>
</div>