首页 > 解决方案 > Ionic 5 - 如何修改 ion-button expand="block" 宽度

问题描述

我有这条线

<ion-button expand="block" id="create" shape="round">Create Account</ion-button>

我想增加这个按钮的宽度。我找不到任何方法来增加按钮的高度和宽度。我曾尝试使用 id。那没有做任何事情。

#create {
    --width: 250px;
    --height: 120px;
}

标签: javascriptangularionic-framework

解决方案


您正在使用无效的 css 属性(--width--heigth)。我想你正在寻找height and width

#create {
    width: 250px;
    height: 120px;
}

推荐阅读