Jump to content
  • 0

Проблемы с clear


beginner
 Share

Question

Привет,

прошу совета товарищи, в общем проблема заключается в следующем:

есть такой код:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title></title>

<style type="text/css">
* {
margin: 0; padding: 0;
}
body {
margin: 5px; padding: 0;
}
div.left {
float: left; width: 250px;
}
div.left p {
background-color: #FFCC66;
}
div.right {
margin-left: 250px;
}
div.right p {
background-color: #FF9966;
}
</style>
</head>

<body>
<div class="left">
<p>left</p>
<p>left</p>
</div>
<div class="right">
<p style="float: left;">right</p>
<p style="clear: left;">right</p>
</div>
</body>

</html>

тег <p> в столбце div.right сносится ниже div.left из-за стиля clear: left , посоветуйте пожалуйста как с этим бороться?

Edited by beginner
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

попробуй так

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title></title>

<style type="text/css">

* {

margin: 0; padding: 0;

}

body {

margin: 5px; padding: 0;

}

div.left {

float: left; width: 250px;

}

div.left p {

background-color: #FFCC66;

}

div.right {

margin-left: 250px;

}

div.right p {

background-color: #FF9966;

}

.clear { clear:both;}

</style>

</head>

<body>

<div class="left">

<p>left</p>

<p>left</p>

</div>

<div class="right">

<p>right</p>

<p>right</p>

</div>

<div class="clear"></div>

</body>

</html>

Link to comment
Share on other sites

  • 0

так конечно можно сделать, но если у меня в левом или в правом блоке будет clear: left, то все будет сноситься как я и показал в коде, меня интересует можно ли это как то обойти, либо есть ли какой то прием чтобы сноса блоков не было?

Edited by beginner
Link to comment
Share on other sites

  • 0

Понятно. У вас проблема не в незнании приема, а в логике, в неправильности общего подхода... Учитесь думать.

Вариантов тут тьма. Ну например самый поганенький:

<body>
<div class="left">
<p>left</p>
<p>left</p>
</div>
<div class="right">
<p style="float: left;">right</p><br>
<p style="float: left;">right</p>
</div>
</body>

Вариант 2:

<body>
<div class="left">
<p>left</p>
<p>left</p>
</div>
<div class="right">
<p>right</p>
<p style="float: left;">right</p>
</div>
</body>

Вариант 3:

<body>
<div class="left">
<p>left</p>
<p>left</p>
</div>
<div class="right">
<p>right</p>
<p>right</p>
</div>
</body>

Только тут, да и в других вар-тах тоже, вместо того что было в стиле div.right надо вот это прописать:

div.right {
overflow:hidden;
}

Ну и еще можно напридумывать :)

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