Jump to content
  • 0

Два блока


Simel
 Share

Question

Возник очередной вопрос, как правильнее сделать и проще такую задачу.

274968.png

Первое что пришло в голову.

HTML


<div id="header">
<div id="menu">
<ul>
<li>Control Panel</li>
</ul>
</div>
<div id="sub_menu">
<ul>
<li>Settings</li>
</ul>
</div>
</div>

CSS


#header {
width: 100%;
background-color: #000;
}
#header #menu {
height: 30px;
}
#header #sub_menu {
height: 30px;
background-color: #dadada;
}
#header #menu ul {
color: #fff;
}
#header #menu ul li {
float: left;
padding: 8px 0px 0px 30px;
margin: 0px 0px 0px 0px;
list-style: none;
}
#header #sub_menu ul {
color: #d20f0f;
}
#header #sub_menu ul li {
float: left;
padding: 8px 0px 0px 30px;
margin: 0px 0px 0px 0px;
list-style: none;
}

Возникает такой вопрос, верно ли такое решение с точки зрения правильной верстки, и есть ли другие варианты.?

Edited by Simel
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Возникает такой вопрос, верно ли такое решение с точки зрения правильной верстки, и есть ли другие варианты.?

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

http://jsfiddle.net/TW2Bc/2/

Link to comment
Share on other sites

  • 0

Зачем здесь вообще список, это выглядит как блок, тогда вообще можно двумя обойтись элементами.

<div class="block">
<h2>Control Panel</h2>
<div class="content">Settings</div>
или
<p>Settings</p>
</div>

Link to comment
Share on other sites

  • 0

Simel,

Дружище, а это что вообще такое? Какое-то меню или чё? Вверху - это заголовок?

Вообще планировалось что это будет меню.

Сверху основное , снизу выпадающее.

Тогда делай, как тут http://psywalker.ru/Forum/Menu/L-Menu/main-page.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