HTML CSS examples for CSS Layout:3 Column
CSS for three column display
<html> <head> <title>test</title> <style> .side {<!--from w w w .j a va 2s . c o m--> width: 20%; float: left; background-color: red; height: 100%; } .middle { width: 60%; float: left; background-color: blue; height: 100%; } </style> </head> <body> <div class="side"> </div> <div class="middle"> </div> <div class="side"> </div> </body> </html>