可以尝试使用CSS的padding属性来调整文字在按钮框中的位置,如:

input[type="button"] {
  text-align: center;
  padding: 0 10px; /* 调整左右间距 */
  line-height: normal; /* 取消行高 */
}

如果还是无法解决问题,可以考虑使用CSS的flex布局,将文字居中对齐,如:

input[type="button"] {
  display: flex;
  justify-content: center;
  align-items: center;
}

原文地址: https://www.cveoy.top/t/topic/hitH 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录