Jump to content
  • 0

Фот уходит за края браузера!


evksky12
 Share

Question

Есть фоновое изображение 742x10px.

Есть вот такой код CSS


body {
margin: 0px;
padding: 0px;
background: #FFF url(images/img01.gif) repeat-y center top;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
text-align: justify;
color: #FFFFFF;
}

Вот сам файл http://up.optizone.ru/651185 со всеми параметрами. Когда уменьшаешь браузер, то синяя часть начинает исчезать, а хотелось бы чтобы доходя до края она оставалась! Помогите с решением!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Есть фоновое изображение 742x10px.

Есть вот такой код CSS


body {
margin: 0px;
padding: 0px;
background: #FFF url(images/img01.gif) repeat-y center top;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
text-align: justify;
color: #FFFFFF;
}

Вот сам файл http://up.optizone.ru/651185 со всеми параметрами. Когда уменьшаешь браузер, то синяя часть начинает исчезать, а хотелось бы чтобы доходя до края она оставалась! Помогите с решением!

Наиболее простой способ - создать главный контейнер c фиксированной минимальной шириной:


<body>
<div id="main_container"></div>
</body>

и


html {
height: 100%;
}

body {
color: #FFFFFF;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
margin: 0px;
padding: 0px;
text-align: justify;
}

#main_container {
background: url(img01.gif) repeat-y center;
height: 100%;
min-width: 742px; /* Ширина бэкграунда */
}

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