CSS的Grid布局怎么实现小狗邮票
小编给大家分享一下CSS的Grid布局怎么实现小狗邮票,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
成都创新互联公司服务项目包括西塞山网站建设、西塞山网站制作、西塞山网页制作以及西塞山网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,西塞山网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到西塞山省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
代码解读
定义dom,容器表示邮票:
居中显示:
body{
margin:0;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
background-color:teal;
}
设置容器尺寸:
.stamp{
position:relative;
width:40.5em;
height:71em;
font-size:6px;
padding:5em;
background-color:white;
}
用重复背景绘制出邮票的齿孔:
.stamp{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}
.stamp::after,
.stamp::before{
content:'';
width:100%;
height:100%;
position:absolute;
background:radial-gradient(circle,teal50%,transparent50%),
radial-gradient(circle,teal50%,transparent50%);
background-size:3.5em3.5em;
}
.stamp::before{
top:1.5em;
background-repeat:repeat-y;
background-position:-4.5%0,104.5%0;
}
.stamp::after{
left:1.5em;
background-repeat:repeat-x;
background-position:0-2.5%,0102.5%;
}
在html文件中增加小狗的dom元素,子元素分别表示耳朵、头部、眼睛、舌头、身体、尾巴和爪子: