CoreUI is fully compatible with Bootstrap, but it’s more than just a theme or UI extension — it’s a professionally developed and maintained system that addresses many of the limitations developers face with Bootstrap alone.
Key differences between CoreUI and Bootstrap:
Whether you’re starting a new project or migrating from Bootstrap, CoreUI gives you a powerful upgrade path with more features, framework bindings, and peace of mind for long-term maintainability.
Quick startLooking to quickly add CoreUI for Bootstrap to your project? Use jsDelivr, a free open source CDN. Using a package manager or need to download the source files? Head to the downloads page.
CoreUI was created as an extension to Bootstrap, allowing it to be used both as a standalone library and as a replacement for the currently utilized Bootstrap in your project.
CSSCopy-paste the stylesheet <link>
into your <head>
before all other stylesheets to load our CSS.
<link href="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/coreui.min.css" rel="stylesheet" integrity="sha384-NlsxdkweGA8nr9s0TVc3Qu2zqhWMNsHrvzMpAjVR0yDqXgC2z+RWYoeCNG2uO2MC" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/coreui.min.css" rel="stylesheet" integrity="sha384-BlLgpE33rNj8i4lkG1JFHGEbPX/BwBJaub0gbh3NnujCGY7fmqk4bioQd+jpd/GP" crossorigin="anonymous">
JS
Many of our components require the use of JavaScript to function. Specifically, they require our own JavaScript plugins and Popper. Place one of the following <script>
s near the end of your pages, right before the closing </body>
tag, to enable them.
Include every CoreUI for Bootstrap JavaScript plugin and dependency with one of our two bundles. Both coreui.bundle.js
and coreui.bundle.min.js
include Popper for our tooltips and popovers. For more information about what’s included in CoreUI, please see our contents section.
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.bundle.min.js" integrity="sha384-A/PJYVqbBIxVQjEeGNq+sol2Ti2m1CIs9UqTU4QAPHMm+4V/Qzov2cZYatOxoVgf" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.bundle.min.js" integrity="sha384-EdFuE4i18dh2FK9x/BsGLaH3pzc5SSUzGYoAMgdOOvyFefllPT7+7VlfWLGvRy5a" crossorigin="anonymous"></script>
Separate
If you decide to go with the separate scripts solution, Popper must come first (if you’re using tooltips or popovers), and then our JavaScript plugins.
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.min.js" integrity="sha384-fVNSijNcClMqYMJaWXjuuUiwCtBvGDFCR1VnW6fp8/IEa+43QEe62TJ879bbJyYt" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.min.js" integrity="sha384-MoLEtQ8Hfau+qRXcqSK/+rVBxXdYYkDORzUpcfcLPajfc4m3MzFE2t7mJt4OIhY6" crossorigin="anonymous"></script>
Modules
If you use <script type="module">
, please refer to our using CoreUI for Bootstrap as a module section.
Curious which components explicitly require our JavaScript and Popper? Click the show components link below. If you’re at all unsure about the general page structure, keep reading for an example page template.
Show components requiring JavaScriptIf you’re currently using Bootstrap in your project or want to maintain full compatibility with Bootstrap, check out how you can add CoreUI for Bootstrap to your project. CoreUI enhances Bootstrap projects by adding advanced components and features, offering a smooth upgrade with minimal adjustments. It retains Bootstrap’s familiar structure while introducing new possibilities for UI development.
Heads up! In our documentation, all examples show standard CoreUI implementation. If you are using a Bootstrap-compatible version of CoreUI, remember to use the following changes:
new bootstrap.Alert(...)
instead of new coreui.Alert(...)
close.bs.alert
instead of close.coreui.alert
data-bs-toggle="..."
instead of data-coreui-toggle="..."
Copy-paste the stylesheet <link>
into your <head>
before all other stylesheets to load our CSS.
<link href="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/themes/bootstrap/bootstrap.min.css" rel="stylesheet" integrity="sha384-BoGzEGNrkFWgFB+tiff3CEoUfPNQ6BbB0IQ7lNExChBSZJ0bLi2EbJL00WuI/7y5" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/themes/bootstrap/bootstrap.min.css" rel="stylesheet" integrity="sha384-bzIoh3y1FieJvQfD2Hoq/fnoLUpu67Qsxm3xNxK/fU18oDO61JASXOPkn+E7d5/f" crossorigin="anonymous">
JS
Many of our components require the use of JavaScript to function. Specifically, they require our own JavaScript plugins and Popper. Place one of the following <script>
s near the end of your pages, right before the closing </body>
tag, to enable them.
Include every CoreUI for Bootstrap JavaScript plugin and dependency with one of our two bundles. Both bootstrap.bundle.js
and bootstrap.bundle.min.js
include Popper for our tooltips and popovers.
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-6Be8eu79lpIF6uNZ2kJ36deWV34/ySO+VuWl1PJxmg3YEYlQ0L0+MPA4b7gFSjim" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-j+1NtV8+QYpEdQ6lS7YLg9VfPgfEnPvuauU4hI1bgXNF3WDGkes+HCMeXf+QOCpx" crossorigin="anonymous"></script>
Separate
If you decide to go with the separate scripts solution, Popper must come first (if you’re using tooltips or popovers), and then our JavaScript plugins.
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-42rv0p3Fneto9b30FIQQEbjxkW4iM1iKi4o3R4MhVMH6BAx2MDQOV4iTO2JZyHcg" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-0RNEa5PmrBixnSuvloF1/FLcqASK+LjxolenAEAlvX6H/6HYbnmnroXOVWhAC7+T" crossorigin="anonymous"></script>
Starter template
Be sure to have your pages set up with the latest design and development standards. That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors. Put it all together and your pages should look like this:
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Option 1: CoreUI for Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/coreui.min.css" rel="stylesheet" integrity="sha384-NlsxdkweGA8nr9s0TVc3Qu2zqhWMNsHrvzMpAjVR0yDqXgC2z+RWYoeCNG2uO2MC" crossorigin="anonymous">
<!-- Option 2: CoreUI PRO for Bootstrap CSS -->
<!-- <link href="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/coreui.min.css" rel="stylesheet" integrity="sha384-BlLgpE33rNj8i4lkG1JFHGEbPX/BwBJaub0gbh3NnujCGY7fmqk4bioQd+jpd/GP" crossorigin="anonymous"> -->
<title>Hello, world!</title>
</head>
<body>
<h1>Hello, world!</h1>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: CoreUI for Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.bundle.min.js" integrity="sha384-A/PJYVqbBIxVQjEeGNq+sol2Ti2m1CIs9UqTU4QAPHMm+4V/Qzov2cZYatOxoVgf" crossorigin="anonymous"></script>
<!-- Option 2: CoreUI PRO for Bootstrap Bundle with Popper -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.bundle.min.js" integrity="sha384-EdFuE4i18dh2FK9x/BsGLaH3pzc5SSUzGYoAMgdOOvyFefllPT7+7VlfWLGvRy5a" crossorigin="anonymous"></script>
-->
<!-- Option 3: Separate Popper and CoreUI/CoreUI PRO for Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.min.js" integrity="sha384-fVNSijNcClMqYMJaWXjuuUiwCtBvGDFCR1VnW6fp8/IEa+43QEe62TJ879bbJyYt" crossorigin="anonymous"></script>
or
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.min.js" integrity="sha384-MoLEtQ8Hfau+qRXcqSK/+rVBxXdYYkDORzUpcfcLPajfc4m3MzFE2t7mJt4OIhY6" crossorigin="anonymous"></script>
-->
</body>
</html>
For next steps, visit the Layout docs to start laying out your site’s content and components.
Important globalsCoreUI for Bootstrap employs a handful of important global styles and settings that you’ll need to be aware of when using it, all of which are almost exclusively geared towards the normalization of cross browser styles. Let’s dive in.
HTML5 doctypeCoreUI for Bootstrap requires the use of the HTML5 doctype. Without it, you’ll see some funky incomplete styling, but including it shouldn’t cause any considerable hiccups.
<!doctype html>
<html lang="en">
...
</html>
Responsive meta tag
CoreUI for Bootstrap is developed mobile first, a strategy in which we optimize code for mobile devices first and then scale up components as necessary using CSS media queries. To ensure proper rendering and touch zooming for all devices, add the responsive viewport meta tag to your <head>
.
<meta name="viewport" content="width=device-width, initial-scale=1">
You can see an example of this in action in the starter template.
Box-sizingFor more straightforward sizing in CSS, we switch the global box-sizing
value from content-box
to border-box
. This ensures padding
does not affect the final computed width of an element, but it can cause problems with some third-party software like Google Maps and Google Custom Search Engine.
On the rare occasion you need to override it, use something like the following:
.selector-for-some-widget {
box-sizing: content-box;
}
With the above snippet, nested elements—including generated content via ::before
and ::after
—will all inherit the specified box-sizing
for that .selector-for-some-widget
.
Learn more about box model and sizing at CSS Tricks.
RebootFor improved cross-browser rendering, we use Reboot to correct inconsistencies across browsers and devices while providing slightly more opinionated resets to common HTML elements.
Stay up to date on the development of CoreUI and reach out to the community with these helpful resources.
You can also follow @core_ui on Twitter.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4