css实现结婚电子请帖效果
代码语言:html
所属分类:布局界面
代码描述:模拟西式请帖的布局效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond:400,600&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: grid;
height: 100vh;
width: 100vw;
justify-items: center;
align-items: center;
font-family: "Cormorant Garamond", serif;
background: #D6D3D4;
}
.rsvp-container {
margin: 0 auto;
height: 700px;
width: 500px;
background: #D6D3D4;
position: relative;
z-index: 1;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
.rsvp-container:after {
content: "";
position: absolute;
width: 400px;
height: 600px;
left: 50px;
top: 50px;
background: #fff;
z-index: 1;
}
.rsvp-container:before {
content: "&q.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0