Jump to content
  • 0

Проблема с правым блоком


Bingo
 Share

Question

Здравствуйте, не могу понять в чем дело, при width=100% div с id="container" выходит за рамки поля, и появляется горизонтальная полоса прокрутки, а мне нужно чтобы не выходил за пределы браузера..


<div id="wrapper">


<div id="left">
gggg



</div>
<div id="container" >
<div id="content">
<br>
тексттексттексттексттексттексттексттексттексттексттексттекст


</div>
</div>

</div>


#wrapper {
width: 100%;
margin: 0 auto;


min-height: 100%;
height: auto !important;
height: 100%;

display:table;}


#container {

float: left;
border:1px solid black;
width:100%;
padding-left:210px;
overflow: hidden;
position:absolute;

}
#content {
padding: 10px 28px 0 10px;
color:#000000;
font:12px;
font-family:Arial;
text-align:justify;
width:100%;
}

/* Sidebar Left
—————————————————————————--*/

#left
{
float: left;
position:relative;
width: 210px;
background:#ffffff;
background:url(/images/left.jpg) no-repeat;
padding-left:25px;
margin-top:170px;
height:968px;
}


не поможете?)

Edited by Bingo
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
float: left;

border:1px solid black;

width:100%;

padding-left:210px;

overflow: hidden;

position:absolute;

1. Для абсолютно позиционированных элементов float не работает.

2. Общая ширина видимой части элемента = width + ширина паддингов + ширина рамки. В вашем случае, ширина равна 100% + 210 пикселей + 2 пикселя. Отсюда и проблемы, надо полагать.

Link to comment
Share on other sites

  • 0

насчет ширины, да убрал и все норм, бордер поставил чтобы лучше видно было). А как тогда расположить чтобы от левого блока он отходил?

просто ставлю margin-left ну и он конечно смещается..

Edited by Bingo
Link to comment
Share on other sites

  • 0

Ну он же абсолютно позиционирован, сдвиньте его через left/right/top/bottom.

Для таких случаев вместо border лучше задавать outline, эта рамка не влияет на ширину, да и вообще не влияет ни на что.

Edited by Gaspode
Link to comment
Share on other sites

  • 0

Спасибо большое! Получилось, сделал так

#container {

float: left;

width:100%;

overflow: hidden;

position:absolute;

}

#content {

padding: 10px 28px 0 210px;

color:#000000;

font:12px;

font-family:Arial;

text-align:justify;

}

а в #content просто paddding сделал слева и все так как нужно встало

Gaspode, Спасибо тебе еще раз! :rolleyes:

по поводу outline спасибо, буду теперь так когда проверяю делать)

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