Table of Content
Bootstrap Cheatsheet
Install bootstrap with either local download or CDN
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
Grid System
<!-- Grid System (have different classes for each device) -->
<div class="row">
<div class="col-1 col-md-4 col-xxl-5">1 of 4</div>
<div class="col-10 col-md-4 col-xxl-2">2 of 4</div>
<div class="col-1 col-md-4 col-xxl-5">3 of 4</div>
</div>