- Code: Select all
<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:
- Code: Select all
.container {
margin-left: auto;
margin-right: auto;
width: 960px;
}
I might then have this in my HTML:
- Code: Select all
<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?
