border-radius 在 Firefox 中对输入类型不起作用
在 webkit 浏览器中一切正常。但是当我尝试将 border-radius 与 input[type="url"] 一起使用时,它不起作用。甚至不只是使用输入。仍然没有任何效果。
Css
section.crypter input {
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
padding: 5px;
}
HTML
<form>
<input type="url" placeholder="Insert URL" />
<input type="button" value="Crypt" />
</form>
为什么 Firefox 不允许我设置输入样式?
Everything works fine in webkit browsers. But when i'm trying to use border-radius with input[type="url"] it doesn't work. Not even just using input. Nothing still works.
Css
section.crypter input {
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
padding: 5px;
}
HTML
<form>
<input type="url" placeholder="Insert URL" />
<input type="button" value="Crypt" />
</form>
Why isn't Firefox letting me style the input?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您需要先设置边框样式:
Looks like you need to style the border first :