关于css的问题

article>section vedio {heigth:18px;}

以上“>号”是什么意思?空格又是什么意思?谢谢

IT骒
浏览 1910回答 6
6回答

慕郎_莲华

> 是指子代元素,就是article 下面第一层的section<article>     <section class="s1"> // >section能匹配到s1         <section class="s2>         </section>     </section> </article>空格就表示 右边的是左边的后代。你可以搜搜css 选择器

咕咕问

表示当前元素的下一级元素。<div class="one">    <div class="two">        <div class="three"></div>    </div>    <div class="four"></div></div>如果是  .one div{height:18px;} 表示的是 class 是two 和 three 和 four  的height:18px;如果是 .one>div{height:18px;} 表示的是 class 是two 和 four  的height:18px;

饶森

表示article标签下的section标签,且必须满足section 标签跟在article下面

阿贾大魔王

你可以看看我在 http://www.imooc.com/wenda/detail/312006 的回答,已被提问者采纳了,还不能理解可以回复我。
打开App,查看更多内容
随时随地看视频慕课网APP