欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

DIV/CSS 实现三列,左右两列固定,中间一列自适应_html/css_WEB-ITnose

程序员文章站 2022-06-06 13:38:31
...
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:







注意:HTML中三个div的顺序是 左、右、中;