css布局实现一个便签效果
代码语言:html
所属分类:布局界面
代码描述:css布局实现一个便签效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Give+You+Glory|The+Girl+Next+Door|Gloria+Hallelujah|Indie+Flower);
body {
background: #eee;
}
.sticky {
-webkit-box-shadow: #DDD 0px 1px 2px;
position: relative;
background-color: #F4F39E;
border-color: #DEE184;
color: #47576B;
text-align: center;
margin: 2.5em 0px;
padding: 1.5em 1em;
-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.25);
box-shadow: 0px 1px 3px rgba(0,0,0,0.25);
width: 250px;
font-family: 'Indie Flower', cursive;
font-family: 'Give You Glory', cursive;
font-family: 'The Girl Next Door', cursive;
font-family: 'Gloria Hallelujah', cursive;
}
.post-it {
display: table;
margin: 5em auto 0;
}
.taped {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.sticky.taped:aft.........完整代码请登录后点击上方下载按钮下载查看
网友评论0