1

IDの下に要素のCSSセレクターはありますか?クラスのためにあるように。

内部ulのクラスを変更することはできませんが、影響を受けるのは「the_id」内のulだけです。javascriptを使用することもできますが、cssソリューションを期待しています。

<div id = "the_id">
    <ul>affected<ul>
</div>
<ul>not affected<ul>

css:

#the_id ul{list-style:none}
4

1 に答える 1

3
/* any descendant */
#the_id ul
   {list-style:none}

/* OR */

/* only children */
#the_id > ul
   {list-style:none;}


<div id="the_id">
    <ul><li>affected</li><ul>
</div>
<ul><li>not affected</li><ul>

また、id="the_id"代わりに使用しますid = "the_id"

于 2013-02-06T09:15:28.873 に答える