So, let’s say I included a CSS file in my HTML document with the ordinary <link rel="stylesheet" href="css/style.css" />
.
I then want my HTML document to autocomplete stuff that I might use from my stylesheet, for example:
In my CSS I might have this:
.container {
margin-left: auto;
margin-right: auto;
width: 960px;
}
I might then have this in my HTML:
<div id="content" class="container"></div>
What I want to do, is to autocomplete “container” in my HTML document, because I took that from my stylesheet. I hope you understand what I mean, is this possible?