1

I have these three boxes:

I want Box 3 to get up under Box 1. How can I do this with CSS?

I'm using bootstrap.

<div class="row">
    <div class="col-md-6"> .. content .. </div>
    <div class="col-md-6"> .. content .. </div>
    <div class="col-md-6"> .. content .. </div>
</div>
1
  • Please provide complete code snippet or external code link. Commented Jun 3, 2016 at 10:31

1 Answer 1

2
<div class="row col-md-12">
    <div class="row col-md-6">
        <div class="col-md-12"> .. Box 1 .. </div>
        <div class="col-md-12"> .. Box 3 .. </div>
    </div>
    <div class="col-md-6"> .. Box 2.. </div>
</div>
Sign up to request clarification or add additional context in comments.

1 Comment

Haha no problem mate :)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.