文字两端对齐

1
2
3
4
5
.name {
display: inline-block;
text-align: justify;
text-align-last: justify;
}

关闭按钮

效果图

html

1
2
3
<span class="icon">
<i class="el-icon-close"/>
</span>

css

1
2
3
4
5
6
7
8
9
10
11
12
13
.icon {
width: 50px;
height: 50px;
background: #FF9D47;
box-shadow: 0px 2px 10px 0px rgba(201, 181, 169, 0.5);
border-radius: 0px 0px 0px 86px;
margin-left: auto;
color: #fff;
font-size: 22px;
}
.icon i{
margin: 10px 0px 0px 20px;
}