Home >Web Front-end >HTML Tutorial >DIV/CSS implements three columns, the left and right columns are fixed, and the middle column is adaptive_html/css_WEB-ITnose
CSS:
#left{width:200px;min-height:400px;float:left;}
#center{min-height:400px;margin:0 210px;}
#right{width:200px;min-height:400px;float:right};
Html:
Note: The order of the three divs in HTML is left, Right, middle;