Vous n’êtes pas connecté.
Bonjour, visiteur, bienvenue sur les forums Aqua Computer Forum. Si c’est votre première visite, nous vous invitons à consulter l’Aide. Elle vous expliquera le fonctionnement de cette page. Pour avoir accès à toutes les fonctionnalités, vous devez vous inscrire. Pour cela, veuillez utiliser le formulaire d’enregistrement, ou bien lisez plus d’informations sur la procédure d’enregistrement. Si vous êtes déjà enregistré, veuillez vous connecter.
Liquidator
Senior Member




TrOuble
God






|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<!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> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div id="wrapper"> <div id="container"> </div> </div> </body> </html> |
|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
* {
margin:0;
padding:0;
}
#container {
width:100%;
height:500px;
background-color:red;
position:relative;
top:50%;
margin-top:-250px;
}
#wrapper {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
|

TrOuble
God





Citation de "Y0Gi"
Ich positioniere vertikal zentriert mit einer Kombination aus
line-height: ?;
margin: auto;
vertical-align: middle;
und möglicherweise noch anderen. `line-height` wende ich dabei auf einen Wrapper-Container an.
Citation de "Liq"
dankööö...hat geklappt

|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
ol.images {
list-style: none;
margin: 0;
padding: 0;
}
ol.images li {
float: left;
height: 190px;
margin: 4px;
text-align: center;
width: 156px;
}
ol.images li div {
line-height: 156px;
}
ol.images li img {
margin: auto;
vertical-align: middle;
}
|
|
|
Code source |
1 2 3 4 5 6 7 |
<ol class="images"> <li><a href="#"><div><img src="..." alt="..." /></div>Caption</a></li> <li><a href="#"><div><img src="..." alt="..." /></div>Caption</a></li> <li><a href="#"><div><img src="..." alt="..." /></div>Caption</a></li> <li><a href="#"><div><img src="..." alt="..." /></div>Caption</a></li> <li><a href="#"><div><img src="..." alt="..." /></div>Caption</a></li> </ol> |
-