纯css布局实现绿植效果
代码语言:html
所属分类:布局界面
代码描述:纯css布局实现绿植效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body{
background: #fbe6d4;
}
.wrapper{
position: absolute;
height: 250px;
width: 700px;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.container1{
position: absolute;
display: inline-block;
width: 180px;
height: 250px;;
background: #fbe6d4;
margin: 20px;
}
.container2{
position: absolute;
left: 200px;
display: inline-block;
width: 180px;
height: 250px;;
background: #fbe6d4;
z-index: -2;
margin: 20px;
}
.container3{
position: absolute;
left: 400px;
display: inline-block;
w.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0