收藏
回答

自定义组件宽度100%无效?

index 页面

pages/index/index.wxml:

<material-button>
  text
</material-button>

pages/index/index.scss:

material-button {
  display: block;
  border: 1px solid black;
}


MaterialButton 自定义组件

component/MaterialButton/index.wxml:

<button class="material-button">
  <slot />
</button>

component/MaterialButton/index.scss:

button.material-button {
  width: 100%;
}

// button { width: 100%; } // 无效
// .material-button { width: 100%; } // 无效

在component/MaterialButton/index.scss中,通过button.material-button可以设置按钮宽度为100%,单独通过button或者.material-button不可以。但是在开发工具中可以看到按钮宽度为100%。

回答关注问题邀请回答
收藏

1 个回答

  • Demons
    Demons
    2023-07-08

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2023-07-08
    有用
    回复
登录 后发表内容