Jump to content
  • 0

Не правильное отображение в Chrome


param
 Share

Question

Здравствуйте. Первый раз столкнулся с ситуации, что в Хроме некорректно отображается страница, то есть в Мозилле, Опере и даже ИЕ всё ОК. а в Хроме нет... Ситуация следующая:


<div id="wrapper">

<header id="header">

</div>
<nav id="hor_menu">

</nav>
</header>
<header id="slider">

</header>

<section id="middle">
<div id="container">
<div id="content">

</div>
</div><!--#container-->

<aside id="sideRight">

</aside>

<aside id="sideLeft">

</aside>

</section>

</div><!-- #wrapper -->


html, body{
height:100%;
background:#fff;
}
body{
font:12px/18px Arial, Tahoma, Verdana, sans-serif;
width:100%;
}
#wrapper{
width:1002px; /*width:1002px;*/
margin:0 auto;
height:100%;
}
#header{
height:155px;
position:relative;
border:1px solid #b4b0b0;
border-bottom:none;
}
#slider{
height:285px;
background:#fff;
position:relative;
z-index:10;
margin-bottom:-440px;
border-left:1px solid #b4b0b0;
border-right:1px solid #b4b0b0;
}
#sli{
position:absolute;
left:55px;
top:10px;
width:935px;
height:235px;
}
#middle{
min-height:100%;
background:url(../images/all.jpg) repeat-y;
border-left:1px solid #b4b0b0;
border-right:1px solid #b4b0b0;
}
#middle:after{
content:'.';
display:block;
clear:both;
visibility:hidden;
height:0;
}
#container{
width:100%;
float:left;
overflow:hidden;
margin-top:280px;
}
#content{
padding:0 270px 0 220px;
}
#sideLeft{
float:left;
width:199px;
margin-left:-100%;
position:relative;
margin-top:280px;
}
#sideRight{
float:left;
margin:0 -3px 0 -264px;
width:264px;
position:relative;
margin-top:280px;
}

Проблема заключается в том, что Хром неправильно рассчитывает margin-top. Ему нужно задавать не 280 пикселей, а большее значение, иначе контент левой, правой и центральной колонки заезжает под верхний блок. Как это можно обойти?

Link to comment
Share on other sites

20 answers to this question

Recommended Posts

  • 0

Посмотрел, через средства разработчик в Хром, увидел что контент стоит за header, при этом я ставлю всевозможные значения margin-top для правой колонки, но это вообще не как не влияет...

upd: Хотя в этом инструменте для разработчиков вообще пишется полный бред, для левой колонки у меня марджин сверху 280 пиксилей, а там пишется, что 445...

Link to comment
Share on other sites

  • 0

картинки как должно быть мы так и не дождались, чтобы говорить о том что нужно для этого сделать


#content{
padding:0 270px 0 220px;
}
#sideLeft{
float:left;
width:199px;
margin-left:-100%;
position:relative;
margin-top:280px;
}
#sideRight{
float:left;
margin:0 -3px 0 -264px;
width:264px;
position:relative;
margin-top:280px;
}

почему sideRight имеет float:left; и отрицательные margin, зачем левой и правой колонкам нужен отступ сверху?

могу предположить, что вам нужно было что-то вроде этого:


<style>
*{margin:0px;padding:0px;}
html,body{height:100%;}
#body{
position:relative;
margin:0px auto;
width:1000px;
min-height:100%;
overflow:hidden;}
#header{
}
#content{
margin:0px 210px;
padding-bottom:30px;
background:#ddd;}
#left{
position:relative;
float:left;
padding-bottom:30px;
width:200px;
background:#999;}
#right{
position:relative;
float:right;
padding-bottom:30px;
width:200px;
background:#999;}
#footer{
position:absolute;
left:0px;
right:0px;
bottom:0px;
height:30px;
background:#bbb;}
</style>
<div id="body">
<div id="header">
header
</div>
<div id="left">
left
</div>
<div id="right">
right
</div>
<div id="content">
content
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
content
</div>
<div id="footer">
footer
</div>
</div>

Edited by Switch74
Link to comment
Share on other sites

  • 0

Ах да картинки:

1248372m.jpg

1304695m.jpg

Как видно контент в Хроме уходит за Slider причём если в других браузерах, его положение регулирует margin-bottom, то в Хроме в независимости от его размера, контент не двигается...

Edited by param
Link to comment
Share on other sites

  • 0


#slider{
height:285px;
background:#fff;
position:relative;
z-index:10;
margin-bottom:-440px;
border-left:1px solid #b4b0b0;
border-right:1px solid #b4b0b0;
}

зачем слайдеру margin-bottom:-440px;

вы явно перемудрили с отрицательными отступами из-за него у вас все и лезет под слайдер

Link to comment
Share on other sites

  • 0

Нет всё равно не помогает... Хром отсчитывает марджин-топ от самого верха страницы, а остальные браузеры отсчитывают от меню. Что-то находится (или не находится)в этом меню, что заставляет все браузеры отсчитывать марджин от него, а Хром почему то игнорирует это что-то:


.dj-main {
padding: 0;
margin: 0;
list-style: none;
height: 30px;
background: #fff url(../images/hor_menu1.gif) repeat-x;/*url(../images/three_0.gif)*/
position: relative;
z-index: 500;
font-family: arial, verdana, sans-serif;
width: auto;
}

.dj-main li.dj-up {
display: block;
float: left;
}

.dj-main li a.dj-up_a {
display: block;
float: left;
height: 30px;
line-height: 33px;
color: #ccc;
text-decoration: none;
font-size: 11px;
font-weight: bold;
padding: 0 0 0 15px;
cursor: pointer;
background: url(../images/hor_menu1.gif);/*url(../images/three_0.gif)*/

}

.dj-main li a.dj-up_a span {
float: left;
display: block;
padding: 0 15px 0 0;
height: 30px;
background: url(../images/hor_menu1.gif) right top no-repeat;/*url(../images/three_0.gif)*/
background:url(../images/separator1.gif) no-repeat;/**/
padding:0 8px 0 8px;
}

.dj-main li a.dj-up_a span.dj-drop {
padding: 0 25px 0 0;
background: url(../images/hor_menu1a.gif) no-repeat right top;/*url(../images/three_0a.gif)*/
}

.dj-main li:hover a.dj-up_a, .dj-main li.active a.dj-up_a {
color: #fff;
background: url(../images/hor_menu2.gif) no-repeat;/*url(../images/three_1.gif)*/
}

.dj-main li:hover a.dj-up_a span, .dj-main li.active a.dj-up_a span {
background: url(../images/hor_menu2.gif) no-repeat right top;/*url(../images/three_1.gif)*/
background:url(../images/separator1.gif) no-repeat right top;/**/
padding:0 8px 0 8px;
}

.dj-main li:hover a.dj-up_a span.dj-drop, .dj-main li.active a.dj-up_a span.dj-drop {
background: url(../images/hor_menu2a.gif) no-repeat right top;/*url(../images/three_1a.gif)*/
padding-bottom: 3px;
}

.dj-main li.separator > a {
cursor: default;
}

Как заставить Хром тоже отсчитывать марджин от меню?

Edited by param
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