书签制作
1、使用渐变,效果如图
<p class="bg"><span>我是标签</span></p>
<style>
.bg{
width: 115px;
line-height: 50px;
background: red;
background: linear-gradient(60deg, transparent 25px, red 0) top left,
linear-gradient(120deg, transparent 25px, red 0) bottom left;
background-size: 100% 100%;
background-repeat: no-repeat;
text-align: center;
font-size: 14px;
margin-bottom: 10px;
}
span{
margin-left: 10px;
color: #FFF;
}
</style>
2、使用边框,效果如图
<p class="bigDiv">
<p class="squr"></p>
<p class="ju">我是书签</p>
</p>
<style>
.bigDiv{
position: relative;
width: 125px;
height: 50px;
}
.squr{
width: 0;
height: 0;
border-top: 25px solid red;
border-bottom: 25px solid red;
border-left: 15px solid transparent;
position: absolute;
z-index: 3;
top: 0;
left: 0;
}
.ju{
width: 100px;
line-height: 50px;
background: red;
position: absolute;
left: 15px;
color: #FFF;
text-align: center;
font-size: 14px;
}
</style>
3、使用before、after选择器,效果如下
<p class="p1"></p>
<style>
.p1:before { /*做一个书签效果*/
position: absolute; /*必须*/
top: 250px;
left: 20px;
z-index: 1;
height: 0;
padding-right: 10px;
font-weight: bold;
line-height: 0;
color: #000;
border: 15px solid #ee7600;
border-right-color: transparent; /*右边框透明,变成空缺的角*/
content: '书签';
box-shadow: 0 5px 5px -5px #000;
}
.p1:after { /*书签的夹角*/
content: '';
position: absolute;
top: 280px;
left: 20px;
border: 4px solid #89540c;
border-left-color: transparent;
border-bottom-color: transparent;
}
</style>
文章最后发布于: 2018-10-15 15:17:39
相关阅读
background-color背景颜色属性。css2.1中,颜色的表示方法有哪些?一共有三种:单词、rgb表示法、十六进制表示法1. 用英语单词来表
css3中background-repeat的 space和round属性
background-repeat space/round属性 2018-06-01 admin 1.容器空间小于图片 p { width: 200px; height: 200px; bor
在油管上看到了10个超漂亮的CSS 3D特效,遂分享给大家,有写是css+JavaScript实现的。 3D Slicebox 在3D立方体上寻找图像幻灯片?查看
知识往往随时间淡忘,沉心在开发中时间长了,发现好些知识已经又模糊了,一些很好用的属性,其本身就有,却忘了,然后绕个大圈子自己实现了
本系列博客汇总在这里:JavaWeb_CSS 汇总目录p 和 span_边框一、p 的边框样式二、所有 html 在布局上都遵守盒子模型三、p 的内边框