我在這裏閱讀了很多帖子,但這些解決方案似乎不適合我。適合圖片到表格單元
我與行的問題,因爲它應該沒有那些白色的間距ONT頂部適合圖像:
#popuptable table, th, td, tr
table.popuptable {
border-width: 1px;
border-spacing: 2px;
border-style: outset;
border-color: #2778AF !important;
border-collapse: collapse;
background-color: white;
}
table.popuptable th {
margin-left: 20px !important;
border-width: 0px;
padding: 2px;
border-style: ;
border-color: #2778AF !important;
background-color: white;
-moz-border-radius: ;
}
table.popuptable td {
border-width: 0px;
padding: 2px;
border-style: ;
border-color: #2778AF !important;
background-color: white;
-moz-border-radius: ;
}
table.popuptable tr {
border-width: 0px;
padding: 2px;
border-style: ;
border-color: #2778AF !important;
background-color: white;
-moz-border-radius: ;
}
哪裏是我的問題嗎?我試過的height
所有組合我能想到的..
更新HTML的彈出:
<div id="hidden-BE" style="display:none;" class="popuptable">
<table border="0" width="400">
<tbody><tr>
<th colspan="2"> Kanton BE </th>
</tr>
<tr>
<td width="125px"><img src="http://www.personnes-histoirerurale.ch/pimages/ch/be.gif" width="125"></td>
<td valign="top">
<b>Auswahl (Total: 4)</b><br>
<ul>
<li>Laur, Ernst Ferdinand (1871-1964)</li>
<li>Landis, Jakob (1926-)</li>
<li>Lampert, Octave</li>
<li>Laur-Schaffner, Sophie (1875-1960)</li>
</ul>
</td>
</tr>
</tbody></table>
</div>
哪裏是相關的html ..?圖像在哪裏?你想保持圖像的高寬比..? –
嘗試在表格單元格或表格本身中使用'margin'。此外'valign'屬性可能會有所幫助。 – dward
保證金沒有工作,但填充確實: \t'td {padding-top:0px; padding-bottom:0px; }' 下一次我會使用divs ;-) – Tate83