HTML CSS examples for CSS Layout:3 Column
3 column layout display:inline-block gap
<html> <head> <style> body {<!-- www . j a va2 s . c om--> margin: 0px; } .header { background-color: aqua; height: 75px; } .left { float: left; width: 25%; height: 15px; background-color: red; } .content { float: left; width: 50%; height: 15px; background-color: blue; } .right { float: left; width: 25%; height: 15px; background-color: green; } .footer { height: 50px; background-color: yellow; } </style> </head> <body> <div class="header"> Header </div> <div class="left"></div> <div class="content"></div> <div class="right"></div> <div class="footer"></div> </body> </html>