.el-button{/* 全局按钮字体 */
font-family: "Microsoft YaHei UI";
font-weight: normal;
font-size: 15px;
width: 150px;
text-align: center;
}
按钮的文本已经设置了text-align:center,除了一个字比较多的按钮,其他按钮的字体都是居中的。
为了按钮能放下这么多字还把字体调小了,但是调小之后它依然不在中间
<el-button type="primary" plain round style="font-size:10px;">质检细则防护(水电费)</el-button>
研究了一会,发现加一个padding-left: 13px即可
<el-button type="primary" plain round style="font-size:10px;padding-left: 13px;">质检细则防护(水电费)</el-button>