Ver Mensaje Individual
  #7 (permalink)  
Antiguo 05/03/2009, 15:52
BladeKnight
 
Fecha de Ingreso: agosto-2006
Mensajes: 53
Antigüedad: 17 años, 8 meses
Puntos: 0
Respuesta: evitar que el texto se mueva

hola aqui esta la programacion
Código:
<body>
<div id="wrap">
	<div id="top">
    </div>
    <div id="header">
    <div id="logotype">
    	<img src="image1.gif" />	
    </div>
    <div id="image_slide">
    	<img src="image1.gif" />
    </div>
	</div>
    <div id="menu">
    	<ul id="menuul">
        	<li><a href="#" id="link_menu" class="on_page"><span>menu 1</span></a></li>
            <li><a id="link_menu"><span>menu 2</span></a></li>
            <li><a id="link_menu"><span>menu 3</span></a></li>
            <li><a id="link_menu"><span>menu 4</span></a></li>
            <li><a id="link_menu"><span>menu 5</span></a></li>
        </ul>
    </div>
    <div id="content">
    	<div id="col_left">
        </div>
        <div id="col_center">
        </div>
        <div id="col_right">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
        </div>
    </div>
    <div id="footer">
    <div class="spacerfooter"></div>
    </div>
</div>
</body>
estilo
Código:
*, html {
	margin:0;
	padding:0;
}
body {
	background:#d4d4d4;
	margin:0;

}
#wrap {
	width:100%;
	height:600px;

}
#top {
	background:black;
	height:53px;
}
#header {
	background:blue;
	height:147px;
	clear:both;
}

#logotype {
	height:147px;
	float:left;
}
#image_slide {
	width:376px;
	height:147px;
	margin:0;
	padding:0;
	overflow:hidden;
	float:right;
}
#menu {
	background:white;
	height:25px;

}
#menuul {
	float:right;
}
ul#menuul {
	list-style:none;
	padding-right:65px;
	margin:0;
}
ul#menuul li {
	padding:0 0 0 7px;
	float:left;
}
ul#menuul li a {
	width:66px;
	height:25px;
	display:block;
	text-decoration:none;
}
ul#menuul li a:hover {
	background-color:pink;
}
#link_menu {
	background:red;
}
#content {
	border:1px solid green;
	background:#fff;
	height:85%;
	clear:both;
}

#col_left {
	width:420px;
	padding-left:24px;
	padding-top:25px;
	float:left;
}

#col_center {
	width:17px;
	padding-top:25px;
	float:left;
}
#col_right {
	width:502px;
	height:272px;
	padding-top:25px;
	padding-right:24px;
	float:right;
}
#footer {
	background:gray;
	height:53px;
	text-align:center;
	font-family:arial;
	color:#fff;
	font-size:12px;
}
.spacerfooter {
	height:15px;
}
cuando hago pequeña a la ventana todas las cosas se desarman