working top right radius not bottom html css input css3

top - html button border radius



border-radius no funciona en Firefox para mí en los tipos de entrada (1)

Parece que primero debes diseñar el borde:

input { border:1px solid #666666; border-radius: 15px; -moz-border-radius :15px; -webkit-border-radius: 15px; padding: 5px; }

Todo funciona bien en los navegadores webkit. Pero cuando trato de usar border-radius con la entrada [type = "url"] no funciona. Ni siquiera solo usando la entrada. Nada todavía funciona

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>

¿Por qué Firefox no me permite diseñar la entrada?