Hey so I have a progress bar that I want to be centered with a div object vertically. Here is a screenshot of what my current code looks like:
View of HTML Page
As you can see the progress bar is sitting at the top of the blue div. I need it to be sitting vertically centered to the div. Here is my code:
<div class="container">
<div class="text-center">
<div class="row">
<div class="col-xs-6" style="background-color: blue;">
<h2>Title goes here</h2>
<p>This is some text blah blah</p>
</div>
<div class="col-xs-6" >
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:29.17%">
-
</div>
</div>
</div>
</div>
</div>
</div>
If you know how to do this easily, I would love to know & any help is appreciated. Also, if I may have coded it wrong etc. Please let me know, I would love to learn!