我创建了一个带角度的nativescript应用,其中有一些具有自定义样式的按钮,但无法真正创建它们的平方。

我的CSS是:

Button {
    font-size: 13;
    color: #fff;
    padding: 20;
    text-transform: uppercase;
    background-color: #3c3d37;
    font-family: 'Oswald';
    letter-spacing: .2;
    border-radius: 0;
}
Button:highlighted {
    background-color: #494a43;
}


css -  native 平方按钮不起作用-LMLPHP

在该图像中,您可以看到较小的边框半径,但是为什么呢?如果设置border-radius: 10;,它可以工作并且边框变圆,但是似乎最小边框半径> 0。

或者是maby是否设置了其他小的默认样式(阴影或其他样式)来设置较小的边框半径

最佳答案

您无法将按钮与本机脚本完美地平方在一起

关于css - native 平方按钮不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46070817/

10-12 16:41