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;
hei.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0