Jump to content
  • 0

несколько элементов в строку


mafinok
 Share

Question

не могу понять - такая конструкция:

  <div class="header">
<div class="field1">FIELD1</div>
<div class="field2"><a href="#" class="logo"></a></div>
<div class="field3">FIELD3</div>
</div>


.header {
text-align:center;
width:100%;
height:200px;}
a.logo{background: url(img/logo.png) no-repeat; display:block;width:360px;height:131px;}
.field1,.field2,.field3{width:360px;height:131px;display:inline-block;}

центральный блок, который содержит ссылку рисуется на уровень выше двух остальных. помогите выровнять их на одном уровне.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

вариант 1:

.field1,.field2,.field3{width:160px;height:131px;display:inline-block; vertical-align: middle; line-height: 131px}

вариант2:

.field1,.field2,.field3{width:360px;height:131px; display:block; float: left;}

+внешнему div.header задать ширину и выровнять по центру методом margin: 0 auto;

Link to comment
Share on other sites

  • 0

1й отлично работает, спасибо.

для 2го обязательна ширина .header-а на 100% экрана, делаю контейнер .middle{margin:0 auto;}>.field1,.field2,.field3 для выравнивания элементов по центру, но выравнивает по центру только если явно задать его ширину, как поправить.

покрасил .middle в красный цвет и добавил position:absolute; - ширина стала по содержимому, но {margin:0 auto} не работает

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