任何人都知道爲什麼我的文本不會居中?以及我如何解決它?我嘗試使用文本對齊:中心,但它仍然無法正常工作。在引導按鈕中居中文本
.btn-orange {
margin-top:10px;
width: 200px;
text-align: center !important;
margin:1px;
color: #fff;
background-color: #e3690b;
border-color: #e3690b;
padding: 20px 50px 10px 10px;
border-radius: 10px;
font-size: 27px;
font-stretch: ultra-expanded;
display: inline-block;
margin-bottom: 0;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
}
<button type="button" class="btn-orange" style="text-align:center !important;">Value<br> My Videos</button>
您的填充是原因 – j08691
,因爲您有不均勻的填充。你的填充是50px右邊和10px左邊。使這些值匹配,文本將居中。 –
使用填充:20px 0 20px 0;/*含義填充:右上方左下方; –