How to give space between two links in bootstrap?
June 05, 2022Hi Friends 👋,
Welcome To aGuideHub! ❤️
In this tutorial, we will learn how to give space between two links in bootstrap.
To give space between two links, put the ml-5
tag to create space in two links.
Table of contents
- Includes bootstrap view
- Includes bootstrap library
- Includes css in html page
- Define its class name
Step 1: Includes bootstrap view
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">
Step 2: Includes bootstrap library
First of all, load the Bootstrap framework CSS into the head tag of your webpage.
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
Step 3: Includes css in html page
Here we are using in css class to add give space between two links.
.ml-5 {
margin-left: 5px !important;
}
Step 4: Define its class name
After that, create space between two links with a class name .ml-5
.
<h1> Space between two links in bootstrap</h1>
<div>
<a href="https://infinitbility.com/" class="ml-5">Infinitbility</a>
<a href="https://aguidehub.com/" class="ml-5"> aGuidehub</a>
</div>
Example.
Let’s look at the following example to understand how it basically works:
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>bootstrap</title>
<style>
.ml-5 {
margin-left: 5px !important;
}
</style>
</head>
<body>
<h1> Space between two links in bootstrap</h1>
<div>
<a href="https://infinitbility.com/" class="ml-5">Infinitbility</a>
<a href="https://aguidehub.com/" class="ml-5"> aGuidehub</a>
</div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>
Check the output of the above code example.
All the best 👍