I have set the inner div
to style="margin:auto;"
, yet the home icon is not centered.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
color: white;
background-color: #1E1B1B;
border-color: grey;
}
.nav-col {
background-color: transparent;
margin: 10px;
padding: 10px;
font-size: 30px;
border: 1px solid grey;
height: 700px;
width: 150px;
}
</style>
</head>
<body>
<div class="nav-col">
<div style="margin:auto;"><i class="fa fa-home"></i></div>
</div>
</body>
</html>
This is what I am seeing: