Bonjour, j'essai d'aligner du text au milieu d'une div avec vertical-align mais ça ne fonctionne pas.. Voici mon code..
Je souhaite que le text "BBB" soit au écris au milieu de la hauteur vertical.. merci

CSS:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
div#entete {
	width: 820px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	color: white;
	height: 100px;
}
div#logo {
	background-color: blue;
	display: block;
	float: left;
	width: 40%;
	height: 100%;
}
div#title {
	text-align: center;
	display: block;
	font-size: 20px;
	background-color: red;
	vertical-align: middle;
	height: 100%;
}
HTML :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
<div id="entete" border="0">
		<div id="logo">AAA</div>
		<div id="title">BBB</div>
</div>