My Bootstrap 4 grid has a 9-unit column and a 3-unit column, but the 9-unit column is not occupying 3/4 of the page width as expected.
This is how the HTML code looks like:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet"/>
<div id="services" class="container-fluid text-center">
<div class="row text-center">
<div class="col-sm-9 ">
<div class="row">
<div class="col-sm-3">
<span class="glyphicon glyphicon-off logo-small"></span>
<h4>POWER</h4>
<p>Lorem ipsum dolor sit amet..</p>
</div>
</div>
<div class="col-sm-3 ">
<img class="col-sm-3 features-image2" src="http://placehold.it/140x140">
</div>
</div>
</div>
The issue can be seen in this screenshot (the table should take up 9 columns or 3/4 of the screen width but it does not):
https://i.sstatic.net/h0u5Z.png
I am attempting to align both the table and the image vertically and horizontally within the col-3 column.