<text class="addbutton"></text>
.addbutton {
position: fixed;
right: 50px;
bottom: 60px;
width: 50px;
height: 50px;
color: white;
font-size: 35px;
display: block;
border-radius: 50%;
/* border: 2px solid black; */
line-height: 40px;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: -webkit-radial-gradient(circle, #FE4365, #FC9D9A);
}
.addbutton::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 20px;
margin-left: -10px;
margin-top: -1px;
border-top: 2px solid;
}
.addbutton::after {
content: '';
position: absolute;
left: 50%;
top: 50%;
height: 20px;
margin-left: -1px;
margin-top: -10px;
border-left: 2px solid;
}

评论