I'm trying to display 2 images inside a row and column. I don't want any top/bottom spaces inside column. How do I do that?
img {
vertical-align: top!important;
}
.col-md-6 {
border: 1px solid black;
}
<!DOCTYPE html>
<html>
<head>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="https://via.placeholder.com/13x11/">
<img src="https://via.placeholder.com/77x12/" style="margin: 0 0 0 7px">
</div>
</div>
</div>
</body>
</html>
The column has 26px height but should have just 12px.