16/03/2013, 07:02
|
| Colaborador | | Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 5 meses Puntos: 1012 | |
Respuesta: Slider en responsive design si es posible 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>
<title></title>
<style type="text/css">
* {
margin: 0;
padding: 0;
border: none;
position: relative;
}
html, body {
width: 100%;
height: 100%;
}
#cont {max-width: 100%; height: 100%; background-color:#ff0;}
#centrarConPosicion{
width: 100%;
height: 100%;
background-position: center center;
background-image: url('img.jpg');
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div id="cont">
<div id="centrarConPosicion"></div>
</div>
</body>
</html> |