Question from the Bootsrap test

How to create a two column layout with Bootstrap?

Hard

Study the following HTML code:

<div class="container">
    <div class="row">
        <div class="col-6">
            <p>Contents of column 1</p>
        </div>
        <div class="col-6">
            <p>Contents of column 2</p>
        </div>
    </div>
</div> 

What is the layout of the content in this Bootstrap code?

Author: Maxime JavauxStatus: PublishedQuestion passed 39 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!