纯css布局绘制一个南瓜效果
代码语言:html
所属分类:布局界面
代码描述:纯css布局绘制一个南瓜效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
background: #FFB69E;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
#wrapper {
height: 70vmin;
width: 70vmin;
display: flex;
align-items: center;
justify-content: center;
}
#pumpkin {
height: 70vmin;
width: 70vmin;
display: flex;
align-items: center;
justify-content: center;
}
.stem {
position: relative;
background: #CB9876;
border: solid black .3vmin;
height: 7vmin;
width: 2vmin;
top: -9vmin;
left: 32.........完整代码请登录后点击上方下载按钮下载查看
网友评论0