<!doctype html>
<html>
<head>
<link rel="stylesheet" href="lib/style.css">
<script src="lib/script.js"></script>
<style>
/* S 页面列表布局样式 */
main {
max-width: 600px;
margin: 0 auto;
}
.item-wrap {
display: inline-block;
margin-right: 50px;
}
.item-list {
position: relative;
width: 200px;
height: 250px;
box-shadow: 0 0 5px #ccc;
}
/* E 页面列表布局样式 */
/* S 水平方向的标签 */
.tag-horizontal {
position: absolute;
background: #00cd32;
padding: 0 5px;
display: flex;
align-items: center;
height: 26px;
color: #fff;
}
.tag-horizontal::after {
content: "";
position: absolute;
left: 100%;
top: 0;
border-color: #00cd32 transparent #00cd32 #00cd32;
border-width: 13px 13px 13px 0;
border-style: solid;
}
/* E 水平方向的标签 */
/* S 垂直方向的标签 */
.tag-vertical {
float: left;
/*水平方向放多个的设置*/
margin-right: 2px;
/*水平方向放多个的设置*/
position: relative;
padding: 5px 0;
width: 26px;
color: #fff;
text-align: center;
}
.tag-vertical::after {
position: absolute;
content: "";
left: 0;
top: 100%;
border-style: solid;
border-width: 0 13px 13px 13px;
}
/*可设置不同颜色*/
.tag-vertical.discount::after {
border-color: #00d9a9 #00d9a9 transparent #00d9a9;
}
.tag-vertical.discount {
background: #00d9a9;
}
/* E 垂直方向的标签 */
</style>
</head>
<body>
<main>
<h1>CSS画标签</h1>
<div class="item-wrap">
<h2>水平方向的标签</h2>
<div class="item-list">
<div class="tag-horizontal">-30%</div>
</div>
</div>
<div class="item-wrap">
<h2>垂直方向的标签</h2>
<div class="item-list">
<div class="tag-vertical discount">新品</div>
</div>
</div>
</main>
</body>
</html>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。