Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/01/2012, 06:48
chalnet
 
Fecha de Ingreso: mayo-2011
Mensajes: 62
Antigüedad: 13 años
Puntos: 2
Esta estructuración es correcta?

Que tal gente les consulto si para ustede esta estructuracion html/css es la correcta para el trabajo entre los navegadores, y para el desarrollo del sitio html mismo.
Saludos
aquí dejo el html y el css
Código PHP:
<!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” >
  
<head>
    <
meta http-equiv="content-type" content="text/html; charset=UTF-8" />
    
    <
LINK rel="stylesheet" type="text/css" href="estilos.css">

    <
title></title>
  </
head>
  <
body>
    <
div id="wrapper">
      <
div id="header">
      
Logo
      
      
<div id='buscador' ><br><input type=text id=busc_input size=40><input type=button value=Buscar>
      <
br> <a href=Avanzado>Avanzado</a>
      </
div><!-- fin buscador -->
       </
div>
      <!-- 
fin header -->
   <
div id='contenedor'>
    <
div id="columnas">
        <
div id="izquierda">Izquerda </div> <!-- fin izquierda -->
        <
div id="central">central </div>  <!-- fin central -->
        <
div id="derecha"derecha</div> <!-- fin derecha --> 
    </
div><!-- fin columnas -->
   </
div> <!-- fin contenedor -->
       
      <
div id='footer'>
      
footer
      
</div> <!-- fin footer -->
</
div><!-- fin wrapper -->
    
  </
body>
</
html

Código PHP:
#header{

width:100%;
background-color:blue;

}

#contenedor div {

display inline;


}

#izquierda{
        
height:50%;
        
background-color:#BDD2EF;
        
float:left;
        
width:20%;
}

#central{
        
height:50%;
        
background-color:red;
        
float:left;
        
width:60%;
}

#derecha{
        
height:50%;
        
background-color:#DAF7E2;
        
float:right;
        
width:20%;
}

#footer {

        
height:20%;
        
background-color:#D3D1C1;
        
clear:both;

}


#buscador{

width:500px;
height:100px;
background-color:red;



Por favor si tienen recomendaciones háganme saber. Gracias