Created
December 17, 2011 07:17
-
-
Save h4/1489553 to your computer and use it in GitHub Desktop.
Вложенные списки
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Неправильная вложенность списков --> | |
<ul> | |
<li>Города-миллионники</li> | |
<ol> | |
<li>Москва</li> | |
<li>Санкт-Петербург</li> | |
<li>Екатеринбург</li> | |
</ol> | |
<li>Другие города</li> | |
<ol> | |
<li>Казань</li> | |
<li>Псков</li> | |
<li>Мурманск</li> | |
</ol> | |
</ul> | |
<!-- Правильная вложенность | |
Вложенный список (OL) является частью | |
элемента родительского списка (LI) --> | |
<ul> | |
<li>Города-миллионники | |
<ol> | |
<li>Москва</li> | |
<li>Санкт-Петербург</li> | |
<li>Екатеринбург</li> | |
</ol> | |
</li> | |
<li>Другие города | |
<ol> | |
<li>Казань</li> | |
<li>Псков</li> | |
<li>Мурманск</li> | |
</ol> | |
</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment