daily-share
daily-share copied to clipboard
css 处理文字两边自适应(iOS 兼容)(2020-05-27)
css 处理文字两边自适应(iOS 兼容)
@mixin justify_and_ios($top: 0) {
position: relative;
top: $top;
display: inline-block;
height: 100%;
width: 100%;
text-align: justify;
vertical-align: top;
&::after {
display: inline-block;
width: 100%;
content: '';
height: 0;
}
}
.text-aligin {
@include justify_and_ios()
}