[Solved] How to use a div tag to create a layout and make it responsive [closed]
Like this, if you do it without fancy flexbox stuff: <div class=”wrapper”> <div class=”right”></div> <div class=”left”> <div class=”inner-top”></div> <div class=”inner-bottom”></div> </div> </div> .wrapper { height: 200px; position: relative; width: 100%; } .right { width: 50%; background-color: blue; height: 100%; display:inline-block; float: left; } .left { width: 50%; background-color: red; height: 100%; display: inline-block; } .left … Read more