I have written the following Code in bootstrap:
<div class="col-xs-12 col-md-8">
<div class="alert alert-warning">
1
</div>
</div>
<div class="col-xs-12 col-md-4">
<div class="alert alert-info">
2
</div>
</div>
<div class="col-xs-12 col-md-4">
<div class="alert alert-danger">
3
</div>
</div>
This gives the below design in mobile:
------
1
------
2
------
3
------
Now, How can i use the same structure of mark up to get following view in Desktop? ::
------------ ------
1 | 3 |
--------------------
2
--------------------
Is it possible to do the above structure, If i follow the same mark up ? If not, Please help me with better approach.
Note: I am beginner of bootstrap