1. 程式人生 > >按鈕水平居中

按鈕水平居中

<button class='wx_7_button'>複製兌換碼</button>
.wx_7_button{
  width: 240rpx;
  height: 70rpx;
  line-height: 70rpx;
  color: white;
  display:block;
  margin:0 auto;
  margin-top: 80rpx;
  background-color: #E84951;
  border-radius: 6rpx;
  font-size: 32rpx;
}

效果圖:

說居中的程式碼實現是:

display:block;

margin:0 auto;