estoy dando forma a un formulario con css y no se porque el <select></select> del formulario me sale de diferente tamaño que los <input></input>.
tienen el mismo tamaño definido pero a la hora de la verdad el select es un poco mas pequeño.
¿xq pasa eso? y ¿cómo se corrige?
AQUI OS DEJO EL CÓDIGO:
Código HTML:
Ver original
<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> *{ margin: 0;padding: 0; } body{ width: 900px; background-color: antiquewhite; } form{ width: 800px; margin: 0 auto; background: darkorange; padding: 5px; border-radius: 10px; } fieldset{ width: 50%; background: chartreuse; } label, input, select{ width: 150px; margin: 0 auto; display: inline-block; } label{ color:black; text-align: right; } input[type="submit"]{ height: 55px; margin: 5px; } </style> </head> <body> <form> <fieldset> </select> <input type="submit" value="enviar"> </fieldset> </form> </body> </html>