Jump to content
  • 0

Опера растягивает на 100% фиксированный по ширине столбец


goooooch
 Share

Question

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

Имеем вот такой замечательный код:

<style>

html, body
{
height:100%;
margin:0;
}

table
{
width:100%;
height:100%;
background:#000;
}

table, table tr, table tr td
{
border:none;
border-collapse:collapse;
/*padding:0;*/
}

table tr td
{
vertical-align:top;
}

table tr td.center
{
width:1000px;
background:#fff;
}

.block
{
height:200px;
background:#222;
}

</style>

<table>

<tr>

<td></td>

<td class="center">

<div class="block"></div>

</td>

<td></td>

</tr>

</table>

Если открыть его в браузере (Опера, ФФ, ИЕ не смотрел), то вокруг div.block будет видна белая рамка. Если раскомментить padding:0, то в ФФ рамка исчезает, а вот Опера приподносит сюрприз — td.center растягивается на всю ширину страницы. Особенность Оперы? Как это вылечить?

Информация о системе:

Версия браузера: 12.02

Сборка: 1578

Платформа: Win32

Система: Windows 7

Edited by goooooch
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Особенность Оперы? Как это вылечить?

Не дождавшись ответа решил вопрос самостоятельно.

Нужно было добавить свойство padding:0 не всем ячейкам таблицы, а только td.center


table tr td.center
{
width:1000px;
background:#fff;
padding:0;
}

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