去除邊框這是我的代碼:如何同時使用垂直對齊屬性HTML
<table width="90%" align="center" bgcolor="#669999" border="10" cellpadding="0" cellspacing="0">
<tr>
<td style="border-width:0px 0px 0px 0px; font-family: Nyala; font-size: 90px; color: #000;"><p><span class="font1">Name<br /></span>
Name2</p></td>
<td width="300" align="center" style="vertical-align:top" style="border-width:0px 0px 0px 0px"><img src="pictures/logo - without bg.png" width="200" height="200" alt="logo-without bg" /></td>
</tr>
</table>
我的問題:
的時候,不使用style="vertical-align:top"
財產,我沒有得到周圍的細邊框第二列。但是,當我使用此屬性時,我不知道從哪裏獲取邊界,而我正在使用border-width
屬性設置爲0
。
我不希望得到任何形式的邊框,而使用vertical-align
財產。
我在這兩種情況下都有這個薄邊框。 – Jerska
請不要多次使用相同的屬性(最後一個'td'有兩個'style'屬性)。不同的瀏覽器以不同的方式處理,大多數忽略其中的一個,再加上它違背了標準。 –
那麼如何在單個td中使用多個「風格」? –