div+css布局丝带缎带装饰效果代码
代码语言:html
所属分类:布局界面
代码描述:div+css布局丝带缎带装饰效果代码,适合卡片图文列表中的装饰标注效果。
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
font-family: 'Ubuntu', sans-serif;
}
article {
border-bottom: 2px solid $dark;
border-top: 6px solid $light;
padding: 20px 0;
position: relative;
text-align: center;
}
article:first-child {
border-top: none;
}
article:last-child {
border-bottom: none;
}
aside {
position: relative;
box-sizing: border-box;
display: inline-block;
margin: 0 20px;
top: -26px;
width: 80px;
padding: 5px 8px 10px;
background-color: $dark;
color: $light;
}
aside:before, aside:after {
content: '';
position: absolute;
left: 0;
border-style: solid;
bor.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0