Hola, necesito un poquitín de ayuda porfa.
Quiero que el cuadro amarillo ocupe el resto del espacio del cuadro negro.
Pero esto es lo que sucede cuando le pongo height: 100%
Se sale del cuadro negro.
Qué hago mal?, no sé mucho sobre eesto..
Quiero que el cuadro amarillo ocupe el resto del espacio del cuadro negro.
Código [Seleccionar]
<!DOCTYPE html>
<html>
<div style="background-color: black; width: 1000px; height: 1000px">
<div style="background-color: #FF9800; width: 100%; height: 100px">
</div>
<div style="background-color: #FFEB3B; width: 100%; height: 100px">
</div>
<div style="background-color: #FF9800; width: 100%; height: 100px">
</div>
</div>
</html>
Pero esto es lo que sucede cuando le pongo height: 100%
Se sale del cuadro negro.
Código [Seleccionar]
<!DOCTYPE html>
<html>
<div style="background-color: black; width: 1000px; height: 1000px">
<div style="background-color: #FF9800; width: 100%; height: 100px">
</div>
<div style="background-color: #FFEB3B; width: 100%; height: 100%">
</div>
<div style="background-color: #FF9800; width: 100%; height: 100px">
</div>
</div>
</html>
Qué hago mal?, no sé mucho sobre eesto..