I'm trying to create css buttons by using the following html markup:CSS: por qué no puedo configurar el alto y el ancho de <a href> elements?
<a href="access.php" class="css_button_red">Forgot password</a>
But it ends up being not bigger than the text in the middle. Even though I've set the class's height and width.
You can preview the problem here btw, www.matkalenderen.no Notice the first button, that's a form button and it's using it's own class. At first I tried to use the same class on the css button as well and the same problem appeared, so I tried to separate them into their own classes. In case there was some kind of crash. But it didn't matter anyway.
What am I missing here?
¡Jaja! Inline-block arreglado muchas cosas para mí! Cuando se usa solo display: block, todo el botón estaba desalineado. Pero ahora, sigue el mismo flujo que el botón de formulario :) ¡Gracias! –
Tenga cuidado con el bloque en línea. No es uniformemente compatible con navegadores. Conozca sus análisis y asegúrese de que se muestren bien en todos los buscadores estadísticamente significativos para su sitio. Notiblemente, IE 6 y 7 carecen de soporte sólido de bloque en línea. Consulte http://www.quirksmode.org/css/display.html#t03 – kingjeffrey
@kingjeffrey Quirksmode afirma que IE6 y 7 solo tienen problemas con el bloque en línea cuando se aplica a elementos que no son nativamente en línea. Por lo tanto, no será un problema cuando se aplica a un ''. – nickf