Is there a way to enable CSS auto-complete for classes in Sublime Text 2?
For instance, I have linked a CSS file in my HTML document
link rel="stylesheet" href="css/style.css"
In the CSS file, I have defined the following class:
.container-primary {
border: 1px solid #DDDDDD;
float: left;
font-size: 12px;
height: 115px;
line-height: 1.4;
margin: 0 -1px -1px 0;
padding: 10px;
text-align: center;
width: 800px;
}
How can I set up auto-complete for this CSS class when applying it in my HTML code?
<div id="content" class="container-primary"></div>
Any suggestions would be appreciated.