UNIAPP 开发遇到小问题随手记
1,uniapp text换行
<text class="text-14" style="word-wrap: break-word;width: 100px;">邮件内容邮件内容XXXXXXXX手里的解放了开始对接XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</text>
2,UNIAPP text中文占字符
<text class="text-14">通知人⛒</text>
3,button默认样式
// 默认样式
button {
position:relative;
display:block;
margin-left:auto;
margin-right:auto;
padding-left:14px;
padding-right:14px;
box-sizing:border-box;
font-size:18px;
text-align:center;
text-decoration:none;
line-height:1;
border-radius:5px;
-webkit-tap-highlight-color:transparent;
overflow:hidden;
color:#000000;
background-color:#fff;
}
// 边框样式
button::after{
border: 0;
}
// 禁用时样式
button[disabled] {
background-color: #fff;
color: #666;
}
// 点击时样式
.button-hover {
color:rgba(0, 0, 0, 0.6);
background-color:#fff;
}