图片边框不会显示

时间:2019-09-22 14:15:37

标签: javascript css angular nativescript

我正在使用nativeScript,并且尝试向图像添加边框,但不会显示边框。为什么会这样?

图像确实得到了CSS,如果我设置了其他属性,它们就会生效

<StackLayout>
    <img style="border: 10px solid black;" [src]="currentAttraction.image"/>
</StackLayout>

没有任何错误,只是边框不显示

1 个答案:

答案 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>