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

CSS中实现两个DIV左右并排摆放_html/css_WEB-ITnose

程序员文章站 2022-04-19 20:50:13
...
Css中实现两个DIV左右并排摆放,且自动按比例伸缩
#Div0

{

float:left; background-color:Blue; width:100%; height:180px;

}

#Div1

{

float:left; background-color:Blue; width:70%; height:180px;

}

#Div2

{

background-color: Green; width:30%;height:180px; float:right;

}