html – border-radius在输入类型上对我不起作用

前端之家收集整理的这篇文章主要介绍了html – border-radius在输入类型上对我不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在webkit浏览器中一切正常.但是当我尝试将border-radius用于输入[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不让我输入风格?

解决方法

看起来你需要先设置边框样式:
input {
border:1px solid #666666;
  border-radius: 15px;
-moz-border-radius :15px;
  -webkit-border-radius: 15px;
  padding: 5px;
  }
原文链接:https://www.f2er.com/html/227500.html

猜你在找的HTML相关文章