Таблицаа и меню?

luudman

Registered
Значи направих това:
<table width="269" height="100">
<tr>
<td style="background: url(menu_otgore_259x30.jpg) no-repeat">az</td>
</tr>
<tr>
<td style="background: url(menu_sreda_259x30.jpg) no-repeat">az</td>
</tr>
<tr>
<td style="background: url(menu_otdolu_259x30.jpg) no-repeat" width="260">az</td>
</tr>
</table>
Обаче излиза така:
http://web-tourist.net/project/luudman/menu.html
Защо между редовете има такова разтояние? Как да го премахна? Ако не може със див някой може ли да каже как да го направя?
 
Пробвай така
Код:
<table width="269" height="100" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="background: url(menu_otgore_259x30.jpg) no-repeat">az</td>
</tr>
<tr>
<td style="background: url(menu_sreda_259x30.jpg) no-repeat">az</td>
</tr>
<tr>
<td style="background: url(menu_otdolu_259x30.jpg) no-repeat" width="260">az</td>
</tr>
</table>
 
<table width="269" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" style="background: url(menu_otgore_259x30.jpg) no-repeat;height:30px">az</td>
</tr>
<tr>
<td valign="top" style="background: url(menu_sreda_259x30.jpg) no-repeat;height:30px">az</td>
</tr>
<tr>
<td valign="top" style="background: url(menu_otdolu_259x30.jpg) no-repeat;height:30px" width="260">az</td>
</tr>
</table>
 
Код:
<style>
.top {
background: url(http://web-tourist.net/project/luudman/menu_otgore_259x30.jpg) no-repeat;
}
.center {
background: url(http://web-tourist.net/project/luudman/menu_sreda_259x30.jpg) no-repeat;
}
.bottom {
background: url(http://web-tourist.net/project/luudman/menu_otdolu_259x30.jpg) no-repeat;
}
</style>
<div class="top">az</div>
<div class="center">az</div>
<div class="bottom">az</div>
 

Back
Горе