Este en un simple codigo de ejemplo con el que estoy trabajando. s un SELECT.
Se ve perfecto en Chrome e IE, sin mbargo en Firefox, el texto aparece pegado a la parte de arroba.
Alguna solucion para centrarlo, sin usar Padding?
Un saludo.
Código HTML:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <style> .styled-select select { background: transparent; width: 268px; padding: 5px; font-size: 16px; border: 1px solid #ccc; height: 75px; } </style> <div class="styled-select"> <select> </select> </div> </body> </html>