简体   繁体   中英

how can i get css class suggestion from a html file in my css file on VScode?

suppose i have a html file like this:

//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>

now i want to get suggestion of the css class of this index.html file in my css file on VSCODE

you can think about css intelliSense on vscode .if we write css class attribute on my html file we get suggestion of class that are written in css file. I want something like this but i want get suggestion in my css file of class that are written in html file.

//style.css

Is that possible?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM