美文网首页
小程序按钮圆角50%不圆问题

小程序按钮圆角50%不圆问题

作者: 生命不止运动不息 | 来源:发表于2021-01-26 17:00 被阅读0次

问题

一个按钮,里面含有图片和文字。设置50%圆角,就是有左侧黑边。如下图。


错误图
正确图

原因

在button-after中,给按钮的content默认了“ ”空字符串值。导致按钮宽度不正常。最后勾掉content属性,即可。


image.png

解决方案

在css中将button::after中content置为none。

css代码

/* ====================== 发票按钮 ==================== */
.receiptBtn{
  width: 108rpx;
  height: 108rpx;
  border-radius: 50%;
  border: none;
  background-color: white;

  padding: 0px;

  /* 阴影 */
  box-shadow: 4rpx 4rpx 15rpx -3rpx #333; 

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: fixed;
  right: 15rpx;
  bottom: 180rpx;
}

 /* 内容置空,防止按钮不圆*/
button::after {
  content: none;
}

相关文章

    本文标题:小程序按钮圆角50%不圆问题

    本文链接:https://www.haomeiwen.com/subject/biagzktx.html