Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/07/2010, 15:28
Avatar de _CIM_
_CIM_
 
Fecha de Ingreso: junio-2010
Ubicación: Barranquilla - Colombia
Mensajes: 9
Antigüedad: 13 años, 10 meses
Puntos: 0
Respuesta: Ayuda con css

Prueba este y me avisas como te funciono..se adapta a el tamaño de la ventana..

Código HTML:
<html>
<head>
    <title></title>
    <style type="text/css">
        #ttcontainer
        {
            width: 100%;
            float: left;
        }
        #image
        {
            background: #041B7E;
            float: left;
            top: 0px;
            left: 0px;
            width: 40%;
            height: 147px;
        }
        
        
        #header
        {
            background: #0f0;
            float: left;
            top: 0px;
            left: 320px;
            width: 48%;
            height: 40px;
           
        }
        #leftcol
        {
            background: #f00;
            float: left;
            top: 0px;
            left: 880px;
            width: 10%;
            height: 40px;
        }
        
        #content
        {
            background: #169136;
            float: left;
            top: 40px;
            left: 320px;
            width: 58%;
            height: 107px;
        }
    </style>
</head>
<body>
    <div id="ttcontainer">
        <div id="image">
        </div>
        <div id="header">
            Header Section</div>
        <div id="leftcol">
            Left Section</div>
        <div id="content">
            Content Section</div>
    </div>
</body>
</html>