0

I have this here that is supposed to show the check font awesome icon side by side with the in stock text, but when I do this it doesnt show in the center but it shows near the center.

.grid-container {
  margin: auto;
  display: flex;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class="grid-container">
    <h4 style="width:50%;margin:0 auto;">
        <span class="fa fa-check-circle"></span>&nbsp;In stock
    </h4>
</div>
epascarello
  • 204,599
  • 20
  • 195
  • 236
Pika
  • 35
  • 5

1 Answers1

-1

You've to display: block the .grid-container

.grid-container{ display: block; margin: 0 auto;}
analogbeing
  • 28
  • 1
  • 7