我的表格内容有一个奇怪的问题
.table {
position:absolute;
top:12px;
left:3px;
width:87px;
height:74px;
}
.table tr {
vertical-align:middle;
}
.table td {
text-align:center;
padding:1px;color:#000000;
font-size:1em;
line-height:1.5em;
width: 50px;
}
.table td span {
padding:3px 5px;
font-size:1em;
background-color:yellow;
}
HTML
<table class="table" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td><span>example 1</span>
</td>
</tr>
</tbody>
</table>
我希望里面的文字span
有一个白色背景,但我不希望白色背景只延伸到文字的边缘,所以我申请了padding
.
但是,有些文本在背景中,但有些不是。
for example
some texts are like these...
-------
|example|
-------
or
--------
| example|
--------
This is what I want.
---------
| example |
---------
我有给td, span
和tr
更大的宽度,但它仍然不能很好地工作。