UI元素的NativeScript border-radius无效

时间:2017-02-06 16:35:44

标签: css telerik nativescript visual-studio-extensions angular2-nativescript

我正在使用VS telerik扩展来开发我的移动应用程序。但是,我试图通过使用CSS border-radius:3px-52px来修改UI元素的边框,但它无法正常工作。我已经使用了几种方法来解决它,但实际上并没有用。我认为这是VS telerik扩展的一个错误。

2 个答案:

答案 0 :(得分:1)

不要在border-radius值中使用px。只需使用数字值。

答案 1 :(得分:0)

通过向图像添加一个类,然后删除它应该工作的px。

示例

.avatar{
    background-color: #ffffff;
    border-radius: 150;
    width: 100
  }

<Image src="https://pbs.twimg.com/profile_images/677158239851646976/l-mkCSMK.jpg"  class="avatar"></Image>