我正在使用nativeScript,并且尝试向图像添加边框,但不会显示边框。为什么会这样?
图像确实得到了CSS,如果我设置了其他属性,它们就会生效
<StackLayout>
<img style="border: 10px solid black;" [src]="currentAttraction.image"/>
</StackLayout>
没有任何错误,只是边框不显示
答案 0 :(得分:0)
尝试这个Source
<StackLayout>
<img style="border-width: 10;border-color: black;border-style: solid;" src="https://image.shutterstock.com/image-photo/large-beautiful-drops-transparent-rain-260nw-668593321.jpg"/>
</StackLayout>