Bueno arreglando el codigo cambaindo 1,2,3 por a,b,c en firefox se arreglo el problema y se ve igual que en opera osea asi:
y en internet explorer siguie el problema... el ultimo div se muestra ñpor debajo siendo que entrre todos hacen el 100% osea se ve así:
estando el codigo ahora así:
Código HTML:
<html>
<head>
<style type="text/css">
body {
margin: 0 0 0 0;
}
#a {
width:30%;
background:#999999;
float:left;
}
#b {
width:50%;
background:#FFCC00;
float:left;
}
#c {
width:20%;
background:#66CC00;
float:left;
}
</style>
</head>
<body>
<div id="a">1</div>
<div id="b">2</div>
<div id="c">3</div>
</body>
</html>
Alguien peude decirme como solucionar este problema en ie yo uso el internet explorer 5 y se ve así, no se si en toro se vea asi, pero es curioso, porque si cambio el css asi:
Código:
#a {
width:30%;
background:#999999;
float:left;
}
#b {
width:40%;
background:#FFCC00;
float:left;
}
#c {
width:30%;
background:#66CC00;
float:left;
}
en internet epxlroer se ve bien, pero no quieroe sas emdidas, necesito las que tengo en el codigo
Código HTML:
#a {
width:30%;
background:#999999;
float:left;
}
#b {
width:50%;
background:#FFCC00;
float:left;
}
#c {
width:20%;
background:#66CC00;
float:left;
}