I'm encountering an issue where I can't seem to align the glyphicon to the center of the input field it's located next to. See below for the code snippet:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8>
<!-- Bootstrap Core CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.mydiv {
font-size: 100px;
}
.glyphicon-search {
font-size: 30px;
}
</style>
</head>
<body>
<div class="mydiv">
<input class="input" type='text' placeholder="ABC" autocomplete="off"><div class="glyphicon glyphicon-search"></div>
</div>
</body>
</html>
Here is a visual representation of the current layout: https://i.sstatic.net/fy8zH.png
I'm looking to adjust the position of the icon slightly higher as indicated by the arrow above. Any thoughts on how this can be achieved?