Jump to content
  • 0

Конфликт float и блоков


Mary_RND
 Share

Question

Попыталась искать похожую тему что-то не получилось:)

Есть такой html


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lagn="ru">
<head>
<title></title>
<META http-equiv=Content-Type content="text/html; charset=windows-1251" />
<META name="keywords" content="" />
<META name="description" content="" />
<LINK REL="stylesheet" TYPE="text/css" HREF="_css/style.css" />
<LINK REL="SHORTCUT ICON" HREF="http://site.ru/favicon.ico" />
<script type="text/javascript" src="_css/jquery-1.js"></script>
<script src="_css/AC_RunActiveContent.js" language="javascript"></script>
<!--[if IE 6]>
<script type="text/javascript" src="ie6fix.js"></script>
<script type="text/javascript">
DD_belatedPNG.fix('.png24');
</script>
<![endif]-->
</head>

<body id="inner_1">
<div id="wrapper">
<div id="wrapper_r">
<!-- path -->
<div class="path">
<a href="#">Главная</a>
</div>
<!-- / path -->


<div id="content">
<h1>Страны мира</h1>

<ul class="strany">
<li>Европа
<ul>
<li><a href="#">Австрия</a></li>
<li><a href="#">Великобритания</a></li>
<li><a href="#">Венгрия</a></li>
<li><a href="#">Германия</a></li>
<li><a href="#">Ямайка</a></li>
</ul>
</li>
</ul>

</div>

</div>
</div>

</body>
</html>

И css

#inner_1 #wrapper {
float:left;
width:100%;
margin: 0px;
margin-top: -1px;
background: url(../i/bg_left_wrap.gif) repeat-y left top;
}

#inner_1 #wrapper_r {
float: right;
background: url(../i/bg_right_wrap.gif) repeat-y right top;
}

#inner_1 #content {
width: 100%;
margin: 0 60px;
padding-top: 25px;
float: left;
}

Вот так это выглядит

8f6fcf16db26.jpg

При том же css но без в #wrapper_r float: right так

7e8489354e77.jpg

Как сделать чтобы нормально тянулся фон в блоке, но текст при этом не уезжал никуда >< Спасибо)

Edited by Mary_RND
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Скажу так, с глюком я разобралась...

#inner_1 #wrapper {
float: left;
width: 100%;
background: url(../i/bg_left_wrap.gif) repeat-y left top;
}

#inner_1 #wrapper_r {
width: 100%;
float: left;
margin: 0 0px 0 0px;
background: url(../i/bg_right_wrap.gif) repeat-y right top;
}

#inner_1 #content {
width: 90%;
margin: 0 auto;
}

css выглядит теперь так

Странно только одно, до этого *подняла старый css* такой же код, но не работал он так же...

klierik, извини за беспокойство, но инета нет дома, а надо было разобраться до сегодня, поэтому послать ничего не могла>< Если интересно могу прислать)

Спасибо ^___^

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