Tengo un problema con mi web.
Dependiendo de la resolucion de la pantalla se me mueve todo de lugar queda todo feo quisiera saber si me podrian orientar a como arreglarlo
saludos
| |||
Respuesta: Ayuda con medidas Seguro quieres un diseño estático y para esto debes colocar todo en un DIV contenedor y así centrarlo. En realidad es dificil de ayudarte: -No publicas la web que tiene el error. -No muestras o dices que quieres o como lo quieres. La próxima vez para ayudarte debés especificar bien que quieres. Saludos! |
| ||||
Respuesta: Ayuda con medidas No me salio :S aja Este es mi Css Cita: Y este mi html Puse cualquier cosa como para probarbody { text-align:center; background-color:#000; margin:auto; } #cuerpo { margin:auto; background-color:#FFF; -moz-border-radius: 8px; position:absolute; width:800px; } Cita: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <link rel="stylesheet" type="text/css" href="css.css" /> </head> <body> <img src="logo.png" /> <div id="cuerpo"> </div> </body> </html> |
| |||
Respuesta: Ayuda con medidas HTML: Cita: CSS:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <link rel="stylesheet" type="text/css" href="css.css" /> </head> <body> <div id="contenedor"> <img src"logo.png" /> <div id="cuerpo"></div> </div> </body> </html> Cita: Prueba con esto! body { padding:0; margin:0; } #contenedor{ width:800px; margin:0 auto; } #cuerpo{ background:#fff; width:800px; -moz-border-radius:8px; } |
Etiquetas: |