ボタンをセルに挿入したテーブルがあります。ただし、セルの上部とボタンの間に表示される空白を取り除くことはできません。
Jsfiddle の例を次に示します: http://jsfiddle.net/7Bz36/1/
ボタン付きのシンプルなテーブルがある場所
<table border="1">
<tr>
<td>
<button id="1"></button>
</td>
</tr>
</table>
いくつかのCSSを使用して、それを取り除こうとします:
button {
height: 15px;
width: 15px;
border-radius: 0px;
margin: 0px;
white-space: none;
}
table {
border-collapse: collapse;
}
tr td {
height: 15px;
padding: 0px;
誰でもそれを取り除く方法を理解できますか?ありがとう!