Jump to content
  • 0

Таблица + дивы


ros.pro
 Share

Question

В общем такая ситуация:

Есть макет из таблицы типа: шапка, лево, центр, право, подвал. В общем обычная трехколоночная структура.

В левой ячейке, 2 блока, по середине - один, справа - тоже 2.

Суть проблемы в том, что в опере и мозиле блок который посередине, накладывается на блоки слева и с права.

Вот код:

<body>
<style type=text/css>
body{
margin: 5px;
}

.main_table{
width: 100%;
height: 100%;
border-collapse: collapse;

}
.logo_cell{
width: 100%;
height: 105px;
background: url('images/logo_fon.gif');
}
.left_cell{
width: 15%;
height: 100%;
vertical-align: top;
}
.center_cell{
width: 70%;
height: 100%;
vertical-align: top;
padding-right: 5px;
padding-left: 5px;
}
.right_cell{
width: 15%;
height: 100%;
vertical-align: top;
}
.block_top{
width: 100%;
height: 27px;
padding-left: 10px;
line-height: 30px;
position: relative;
overflow: hidden;
margin-top: 5px;
margin-bottom: 4px;
font-family: Arial;
font-weight: bold;
font-size: 11px;
color: #FFF;
background: url('images/block_top_fon.gif') repeat-x;
}

.block_top_1{
width: 100%;
height: 27px;
padding-left: 10px;
line-height: 30px;
overflow: hidden;
margin-top: 5px;
margin-bottom: 4px;
font-family: Arial;
font-weight: bold;
font-size: 11px;
color: #FFF;
background: url('images/block_top_fon.gif') repeat-x;
}
</style>

<table class="main_table" cellspacing="0" cellpadding="0">
<tr>
<td class="logo_cell" colspan="3"></td>
</tr>
<tr>
<td class="left_cell">

<div class="block_top"></div>

</td>
<td class="center_cell">

<div class="block_top_1"></div>

</td>
<td class="right_cell">

<div class="block_top"></div>

</td>
</tr>
</table>

</body>

Link to comment
Share on other sites

14 answers to this question

Recommended Posts

  • 0
а почему у тебя css в коде html? это не правильно. если css находится в отдельном файле то быстрей загружается страница.

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

Link to comment
Share on other sites

  • 0

У меня дивы друг на друга налаживаются: там три табличные ячейки, левая - 15%, средняя - 70%, правая - 15%.

У дивов прописана ширина 100% и padding-left: 10px, так вот, когда без паддингов, то все нормально, а когда с паддингами, то они друг на друга налаживаются.

Link to comment
Share on other sites

  • 0
У дивов прописана ширина 100% и padding-left: 10px, так вот, когда без паддингов, то все нормально, а когда с паддингами, то они друг на друга налаживаются.

Все верно, ширина 100% это от родительского элемента, когда сдвигаешь падинг, шиирна растет больше 100%. Убери из block_top и block_top_1 паддинги и включи бордер у таблицы, посмотри, средняя ячейка имеет отсутупы, хотя для нее не задана падинги, посмотри за счет чего они образуются.

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