小程序修改按钮大小

直接把元素写在标签里面(按钮“确认支付”)

小程序修改按钮大小

 

wxml

  <button style="width:548rpx;height:120rpx;padding:0;background-color: #2966EE;" class="payButton">
   确认支付
  </button>

wxss

/* 支付按钮 */
.payButton{
  position:absolute;
  top: 500px;
  color: white;
  border-radius: 98rpx; 
  display: flex;
justify-content: center;
align-items: center;
}
  color: white;这行代码注释掉后,点击按钮会发现按钮里的字会闪烁一下

 

上一篇:react native 获取设备 真实ip地址 和 ip 映射的地理位置


下一篇:17.使用CSS完成视差滚动效果?