Jump to content
  • 0

Проблема со вложенными списками


brainiac
 Share

Question

Имеется такой код:

<ul class="main">
<li>Item 1</li>
<ul class="sub">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<li>Item 2</li>
<ul class="sub">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<li>Item 3</li>
<ul class="sub">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</ul>

В CSS прописано следующее:

.main ul, #main li {
display: inline;
margin: 0;
padding: 0;
}

Как сделать так, чтобы элементы списка с классом .main располагались по горизонтали, а .sub (внутри них) — как обычные списки — по строкам? Иллюстрация желаемого эффекта:

20501210.png

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

.main li {float: left;}

.sub li {float: none;}

И код вложенного списка

<ul class="main">
<li>Item 1
<ul class="sub">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</li>
<li>Item 2
<ul class="sub">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</li>
<li>Item 3
<ul class="sub">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</li>
</ul>

Edited by sigma77
Link to comment
Share on other sites

  • 0
sigma77, спасибо!

Правда, в моём конкретном случае это работает совершенно не так, как должно… Код вверху очень упрощённый.

Сейчас буду разбираться, что не так… ;)

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

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