我如何在VScode上从我的css文件中的html文件获得css类建议?

0sgqnhkj  于 2023-03-25  发布在  Vscode
关注(0)|答案(1)|浏览(162)

假设我有一个这样的HTML文件:

//index.html

<div class="home__data">
<h1 class="home__title">Hi, I'am Alexa</h1>
<h3 class="home__subtitle">Frontend Developer</h3>
<p class="home__description">High level experience in web design, knowledge and producing quality work.</p>
<a href="#" class="button button--flex">
Contact Me <i class="uil uil-message button__icon"></i>
</a>
</div>

现在我想得到建议的***css类***这个***index.html***文件在我的css文件上*VSCODE***
你可以考虑*css intelliSense上vscode***.如果我们写我的html文件的css类属性,我们得到的类是写在css文件的建议.我想要这样的东西,但我想得到建议,在我的css文件
的类是写在html文件.

//style.css

这可能吗?

相关问题