[HTML5] Emmet

For example we want to generate the code like this:node

    <a href="#tab1">Tab 1</a><a href="#tab2">Tab 2</a><a href="#tab3">Tab 3</a>
    <div id="tab1" class="tab">
        <h1>Tab 1 Content</h1>
    </div>
    <div id="tab2" class="tab">
        <h1>Tab 2 Content</h1>
    </div>
    <div id="tab3" class="tab">
        <h1>Tab 3 Content</h1>
    </div>

 

So it is three div, has a id called tab1,2,3 and a class tab. inside the div, has h1 with the content.ide

We can do:this

a[href=#tab$]{Tab $}*3

(#tab$.tab>h1{Tab $ Content})*3

 

[]: attrspa

#tab: id--> tabcode

#tab$: id--> tab with increase intergerblog

.tab: class tabthree

>: child nodeit

{}: contentclass

相關文章
相關標籤/搜索