【发布时间】:2018-07-09 20:47:58
【问题描述】:
我正在尝试使用 NativeScript 和 Angular 制作一个应用程序,并希望我的文本输入框有这样的圆角:
这是我的html:
<TextField style="margin-top: 20;" class="input-rounded" hint="Email Address" keyboardType="email" returnKeyType="next" autocorrect="false" autocapitalizationType="none"></TextField>
然后这是我的 .css:
TextField {
border-width: 1;
border-color: white;
background-color: white;
height: 7%;
width: 90%;
margin-bottom: 20;
}
我也尝试将边框半径设置为 1rem。 谢谢!
【问题讨论】:
标签: html css nativescript