Jump to content
  • 0

Объясните что за различия в отображении рамок (IE, FF, Opera 9)


samorealization
 Share

Question

Здравствуйте.

Я взял такой код для примера. Объясните пож. что здесь происходит.

FF3 - толстая черная рамка вылазит из главной таблицы.

IE6, Opera 9.63 - отлично.

В чем природа событий таких??

Спасибо.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
table, tr, td {
margin: 0;
padding: 0;
border-collapse: collapse;
}
</style>
</head>
<body>
<table width="600" style="border: 1px solid red;">
<tr>
<td align="center">
<table width="140" style="border: 6px solid black;" ><tr><td>
(812) 347-87-02
</td></tr></table>
</td>
</tr>
</table>
</body>
</html>

Собственно, эти исследования начал с верстки своего макета.

Если поможете, буду очень благодарен.

Промежуточный вариант моей верстки

Нижняя граница в Opera 9.62 отображается некорректно. Поднимается наверх. Не понимаю.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Спасибо за подсказку.

Это косвенная штука.

Как я понял - все дело в кривом восприятии Оперой border-collapse: collapse

Работоспособный, идентичный везде код:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
table, tr, td {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<table width="600" cellpadding="0" cellspacing="0" style="border: 1px solid red;">
<tr>
<td align="center">
<table width="140" cellpadding="0" cellspacing="0" style="border: 12px solid black;" ><tr><td>
(812) 347-87-02
</td></tr></table>
</td>
</tr>
</table>
</body>
</html>

Вопрос с тестовым примером закрыт.

Подскажите пож. по поводу отображения сайта в Opera.

Что может быть не так? Как исправить?

Link to comment
Share on other sites

  • 0

Исследовал свою верстку. Выделил часть кода.

<html>
<head>
<style type="text/css">
body, tr, td, ul, li, div { margin: 0; padding: 0; }
body { background-color: FFFFFF; color: #895E30; }
table {
background-color: F5F2E3;
border: none;
border-collapse: collapse;
padding: 0;
}

tr, td { vertical-align: top; }
img { display: block; }
</style>
</head>

<body>
<table cellpadding="0" cellspacing="0">
<tr>
<td width="698">

<table width="698" height="76" cellpadding="0" cellspacing="0">
<tr>

<td width="210" height="76">
<table cellspacing="0" cellpadding="0" width="210" height="100%" style="border-bottom: 6px solid red;" >
<tr>
<td height="100%">
</td>
</tr>
</table>
</td>

<td width="488">
<img src="images/zamki_2.jpg" width="488" height="76" alt="">
</td>

</tr>
</table>

</td>
</tr>
</table>
</body>
</html>

В FF3, IE6 - нормально.

В Опере 9.6 - рамка снизу приподнята. Помогите!!! Что нужно Опере сделать такого, чтобы она правильно меня поняла?

Link to comment
Share on other sites

  • 0

Для начала ошибки мелкие надо исправить, Опера к ним критично относится.

F5F2E3 - #F5F2E3

border-collapse: collapse; - убери, в данном случае это не нужно, границ то ведь никаких нет.

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