Jump to content
  • 0

clear: left не убирает обтекание при стиле "div div { float: left


iillyyaa2
 Share

Question

<div style="clear: left;"></div> в такой конструкции не отрабатывает ;)

<!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">
<style>
div {
display: block;
position: relative;
}
div div {
margin: 0 3px 3px 3px;
float: left;
}
</style>


<div style="border: 1px solid yellow;">
<div style="border: 1px solid red;">11111</div>
<div style="border: 1px solid blue;">22222</div>
<div style="clear: left;"></div>
</div>
<div style="border: 3px solid green;">33333</div>

в скомпилированном стиле для блока показывает:

float left

clear left

можно это как то побороть ?

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

psywalker, хорошая идея, не подумал чё то ;) думал уже стили дописывать ;)

блин, по хорошему всё равно не работает ;)

<style>
.clear_left {
clear: left;
float: none;
}
</style>

<div class="clear_left"></div>

float-ы уменя идут из файла отдельного, и они затираются стилем div div

приоритет как выставляется ?

при этом, если в тестовый файлик кидаю, работает... :)

вот такой текст работает... а когда в собранном макете, нет :(

<!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">
<style>
div {
display: block;
position: relative;
}
.clear_left {
clear: left;
float: none;
}
div div {
margin: 0 3px 3px 3px;
float: left;
}


</style>


<div style="border: 1px solid yellow;">
<div style="border: 1px solid red;">11111</div>
<div style="border: 1px solid blue;">22222</div>
<div class="clear_left"></div>
</div>

<div style="border: 3px solid green;">33333</div>

<link rel="stylesheet" type="text/css" href="bbut.css?1" />
<link rel="stylesheet" type="text/css" href="index.css?2" />
<link rel="stylesheet" type="text/css" href="background_position.css?1" />
<link rel="stylesheet" type="text/css" href="floats.css?1" />

div div лежит в index.css

clear_left лежит в floats.css

файрбаг все стили перечёркивает и див див оставляет :(

Link to comment
Share on other sites

  • 0

psywalker, у меня не "div div" ;) я сюда для простоты так написал, т.к. больше вложенного в этом коде ничего нет

<!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">

<style>
div {
display: block;
position: relative;
}
div.ddd div {
margin: 0 3px 3px 3px;
float: left;
}
div.clear_left {
clear: left;
float: none;
}

</style>
<div class="ddd" style="border: 1px solid yellow;">
<div style="border: 1px solid red;">11111</div>
<div style="border: 1px solid blue;">22222</div>
<div class="clear_left"></div>
</div>
<div style="border: 3px solid green;">33333</div>

не работает :(

div.ddd div приоритетнее :(

хотя если написать стиль div div работает ;)

но боюсь я не смогу построить так сайт ;)

может туда засунуть вместо дива <p class="clear_left"></p> ? :))

Edited by iillyyaa2
Link to comment
Share on other sites

  • 0

думал уже, но те дивы чистые... у них нет ни класса, ни стиля...

я пока прописал:

<div class="clear_left" style="clear: left;float: none;"></div>

а потом может найду решение...

на данном этапе это не критично.. но в дальнейшем может усложнить задачу.. в каких то других проектах

ну или можно написать такое:

div.ddd div.clear_left {
clear: left;
float: none;
}

что бы затёртое востанавливал... но блин, как то это не правильно... столько лишнего кода...

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