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