Quick Start ​
Get started with Bootstrap IntelliSense in minutes!
Installation ​
Via Marketplace ​
The easiest way to install is through the Visual Studio Code Marketplace:
- Open Visual Studio Code
- Press
Ctrl+Shift+X(orCmd+Shift+Xon macOS) to open the Extensions view - Search for "Bootstrap IntelliSense"
- Click "Install"
Via Command Line ​
You can also install the extension via the command line:
code --install-extension hossaini.bootstrap-intellisenseVia GitHub Releases ​
Download and install the latest release directly from GitHub:
- Go to the GitHub Releases page
- Download the latest
.vsixfile - Open Visual Studio Code
- Press
Ctrl+Shift+P(orCmd+Shift+Pon macOS) - Type "Install from VSIX" and select Extensions: Install from VSIX...
- Select the downloaded
.vsixfile
Tip
This method is useful if you want to install a specific version or if you're working in an offline environment.
Prerequisites ​
Important
For the extension to activate, Bootstrap must be installed in your workspace.
Install Bootstrap ​
If you haven't installed Bootstrap yet, you can install it with one of these package managers:
npm install bootstrappnpm add bootstrapyarn add bootstrapbun add bootstrapActivation ​
The extension will be automatically activated when:
- You have installed the extension
- Bootstrap is present in your workspace
- You open a supported file (HTML, JSX, Vue, etc.)
You should see a notification that Bootstrap IntelliSense is active.
Activation Status ​
You can check if the extension is currently active by looking at the status bar icon at the bottom of VS Code:
- Active: The Bootstrap IntelliSense icon is displayed normally in the status bar
- Inactive: The Bootstrap IntelliSense icon appears with a strikethrough
Getting Started ​
1. Open an HTML File ​
Create a new HTML file or open an existing one.
2. Start Typing ​
Start typing a Bootstrap class name:
<div class="container">
<div class="row">
<div class="col-md-6">
<!-- Type here: btn- -->
</div>
</div>
</div>3. Use Autocomplete ​
As you start typing, suggestions will appear automatically:

Tip
If suggestions don't appear automatically, press Ctrl+Space (or Cmd+Space on macOS) to manually trigger autocomplete.
4. Use Hover Preview ​
Hover your mouse over a Bootstrap class to see the CSS properties:

