Jump to content
  • 0

Проблемы с резиновой блочной шапкой


sig
 Share

Question

Здравствуйте, делаю шапку для сайта хотел сделать на div , а не табличную, но не получается что-то, может кто-то может подсказать

Шапка имеет вид все блоки по горизонту

1div(ширина фиксирована) 2div(ширина фиксирована) 3div(ширина тянучка) 4div(ширина фиксирована)

У меня получилось реализовать только объединив 3div и 4div, и поставив 4div в правом углу 3div

Хотел спросить можно как-то реализовать что б "3div" отдельно был тянучкой ?

Edited by sig
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
Можно задать для 3div левый и правый padding-и шириной в 1div+2div и 4div соответственно, а остальные за'float'ить и наложить на эти padding-и c помощью отриц. margin-ов и/или position: relative.

Не padding-и, а margin-ы с левой стороны по суммарной ширине двух левых блоков, а с правой по ширине правого блока. А блоки с фиксированной шириной сделать плавающими или позиционировать абсолютно.

Link to comment
Share on other sites

  • 0

sig Так не пойдёт:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Контент</title>
<style type="text/css">
*{ margin: 0; padding: 0;}

div.one { width: 100px; background: red; float: left;}
div.two { width: 100px; background: #000; float: left;}
div.three { width: 100px; background: #03F; float: right;}
div.four { background: #3F3; margin: 0 100px 0 200px;}
</style>
</head>

<body>
<div class="one">1</div>
<div class="two">2</div>
<div class="three">3</div>
<div class="four">text text text text text text text text text text textext text text text text text text text text text text text text
text text text text text text text text text text text text texttext text text text text text text text text text text text texttext text text text text text text text text text text text texttext text text text text text text text text text text text texttext text text text text text text text text text text text textt text text</div>

</body>
</html>

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