Jump to content
  • 0

заезжает один div под div


sce
 Share

Question

Всем привет, ребята подскажите почему может блок 4 уезжать под блок 1

Блоки 2 и 3 наезжают на 1, а блок 4 почему то уходит под блок 1

вот картина:

72771780552821f6957dd8fc7405a2c9.jpg

css:


#1 блок{
width:960px;
margin-top:8px;
border:1px solid red;
background:url('../image/menubg_4.png') no-repeat;
height:90px;
text-align: center;
}


#2 блок {
float: left;
width: 180px;
margin-top: -45px;
margin-right: 10px;

}

#3 блок {
float: right;
width: 180px;
margin-left: 10px;
}

#4 блок {
border:1px solid red;
float: right;
width: 578px;
margin-bottom: 10px;
margin-top: -45px;
}

html

в коде хтмл обычные дивы

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
А как должно быть?

Блок 4 должен быть как блоки 2 и 3, т.е наезжать на блок 1

Схлопывающиеся отступы может быть? В блоке 4 не h1 какой-нибудь в начале стоит?

вот хтмл блока 4:

<div id="content">

{include file="$main_content_template"}

</div>

А тут $main_content_template в каких то файлах есть h1 в каких то нету

А что за схлопывающие отступы?

А и я проверил, если убрать инклуд файлы, и там написать просто текс все равно наезжает;)

Edited by sce
Link to comment
Share on other sites

  • 0

Всё работает. Значит что то ты не так делаешь

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
<head>

<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<style type="text/css">
#wrap { overflow: hidden; width: 500px;}
#head { border: 10px solid #000; height: 100px; background: red;}
#left { float: left; width: 100px; background: green;height: 400px;}
#right { float: right; width: 100px; background: green;height: 400px;}
#content { overflow: hidden; background: blue; height: 400px;}
#left,#right,#content { margin-top: -45px;}
</style>



</head>
<body>
<div id="wrap">
<div id="head">Head</div>
<div id="left">Left</div>
<div id="right">Right</div>
<div id="content">Content</div>
</div>

Link to comment
Share on other sites

  • 0

psywalker, В общем когда у меня нету например background: #000; для блока 1, то все четко наезжает, а как только добавляю фон дак он накрывает блок 4. Что это может означать?

Edited by sce
Link to comment
Share on other sites

  • 0

Вот код хтмл:

<div id="content">

{if $main_content_template == "category.tpl.html"}

<div id="breadcrumb">   

<a href="">{$smarty.const.LINK_TO_HOMEPAGE}</a>

{section name=i loop=$product_category_path}

<span style="color: #999999;"> / </span> <a href="./{$product_category_path[0]}">{$product_category_path[1]}</a>

{/section}

</div><br />

{/if}

{include file="$main_content_template"}

</div>

Вот когда например у меня выполняется условие {if $main_content_template == "category.tpl.html"}

то блок <div id="breadcrumb"> все правильно наезжает на оризонтальный блок, а когда просто инклуд файл идет {include file="$main_content_template"}, то почему то горизонтальный блок закрывает часть содержимого инклуд файла

вот такая проблема

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