Jump to content
  • 0

Разъезжается элементарная таблица в IE


PCSpeaker
 Share

Question

<html>
<body bgcolor=#FFFFFF;>
<style type="text/css">
a img { border: none;}
</style>

<table cellspacing="0" cellpadding="0">
<tr><td width="181" height="53">
<a href ="#"><img src="new.jpg"></a>
</td></tr>
<tr><td width="181" height="53">
<a href ="#"><img src="new.jpg"></a>
</td></tr>
</table>

</body>
</html>

Размер картинки new.jpg 181x53

Такая вот страничка. Везде кроме IE между ячейками пространства нету, в IE же между ячейками проглядывает желтый цвет. Как побороть этот глюк? очень нужно в создании меню использовать картинку со ссылкой на ней, заранее спасибо!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

1. пропишите доктайп

2. експлорер переносы строк плохо интерпретирует

3. если картинки всегда будут таких размеров, то лучше прописывать высоту и ширину еще и у картинок

Получаем такой код:

<!DOCTYPE HTML PUBLIC  "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<body bgcolor=#FFFFFF;>
<style type="text/css">
a img { border: none;}
</style>

<table cellspacing="0" cellpadding="0">
<tr><td width="181" height="53"><a href ="#"><img src="nf.gif" width="181" height="53"></a></td></tr>
<tr><td width="181" height="53"><a href ="#"><img src="nf.gif" width="181" height="53"></a></td></tr>
</table>

</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy