How to align vertical center glyphicon in bootstrap?
April 22, 2022Hi Friends 👋,
Welcome To aGuideHub! ❤️
Today, I am going to show you. How to align vertical center glyphicon in bootstrap with code example.
Here, we will use glyphicon glyphicon-object-align-vertical
class to make a image in vertical center.
Glyphicon glyphicon-object-align-vertical
<i class="glyphicon glyphicon-object-align-vertical"></i>
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">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>Buttons</title>
</head>
<body>
<div class="col-md-12 w-25 bg-warning">
<div class="row align-items-center" style="min-height: 100vh">
<i class="glyphicon glyphicon-object-align-vertical" style="font-size:50px"></i>
</div>
</div>
</div>
<!-- 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>
In the above code, we have used glyphicon glyphicon-object-align-vertical
class to center the button.
Check the output of the above code example.
All the best 👍