Consideremos el siguiente ejemplo:CSS: cómo establecer el ancho del control de formulario para que todos tengan el mismo ancho?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style type="text/css">
div { width: 15em }
input, textarea, select { width: 100%;
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box }
</style>
</head>
<body>
<form>
<div>
<input value="Input">
</div>
<div>
<textarea>Text area</textarea>
</div>
<div>
<select>
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
</div>
</form>
</body>
</html>
El navegador que soporte el border-box
caja de medición, esto se representa como yo quiero:
Correct rendering http://img.skitch.com/20100522-c75mhdut2q32yc7u5r2tkft1n4.png
En IE 6/7, sin embargo, esto se hace como:
IE 6/7 rendering http://img.skitch.com/20100522-f5pkgnwwceaak3t8fqq2w16gfm.png
¿Cómo puedo obtener la misma representación en IE 6/7 que obtengo en otros navegadores, sin recurrir a la configuración de tamaños en píxeles?
¿Te importaría si sugiero la publicación cruzada de esta pregunta en http://doctype.com/? –