我有一个问题。 我用Emmet写html。 我可以编写html以便css结构自动生成吗? 例如......我写这段代码:
div.wrapper>div.head>a.logo+h1{Some text}
我会得到这个:
<div class="wrapper">
<div class="head">
<a href="" class="logo"></a>
<h1>Some text</h1>
</div>
</div>
我想要这个结果:
<div class="wrapper">
<div class="head">
<a href="" class="logo"></a>
<h1>Some text</h1>
</div>
</div>
<style>
.wrapper {}
.wrapper .head {}
.wrapper .head a.logo {}
.wrapper .head a:hover.logo {}
.wrapper .head h1 {}
</style>
有可能吗?