Jump to content
  • 0

Идентификаторы в контекстных селекторах


Darkside
 Share

Question

Доброго времени суток!

Данное определение стиля не работает

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Untitled Document</title>
<style type="text/css">
#list1 ul li {
list-style:none;
}
</style>
</head>

<body>
<ul id="list1">
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</body>
</html>

А если указать

<style type="text/css">
ul#list1 li {
list-style:none;
}
</style>

то все нормально.

Подскажите, первый вариант является синтаксически неправильным?

PS то же самое наблюдается и с классами

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

для тега ul нельзя задать list-style:none. Он зада?тся только для li.

Кстати, ид ведь может быть только один на странице (я имею в виду с одним именем), так что лучше использовать классы.

.list1 li {
list-style:none;
}

:)

Link to comment
Share on other sites

  • 0

#list1 ul li {
list-style:none;
}

При таком написании браузер находит элемент с id=list1, ищет в нем элемент ul, а в нем элемент li и пытается к нему применить list-style:none. А проблема в том что в элементе с id=list1 отсутствует элемент ul.

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