I want the vscode
of all property options of css
to be in the html
file, eg:
When I start typing background, I want to know all the options, without having to do it in a separate css file. After all other editors do this by default.
Case 1:
<style>
main{
background-image: url('img/note.jpg');
text: white !important;
background-repeat: no-repeat;
height: 400px;
}
</style>
Case2:
<div style='background-image: url('img/note.jpg');height:400px;'>