Source Code:
(back to article)
Submit
Result:
Report an issue
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>Titre du document</
title
>
<
style
>
p
{
height:
90
px
;
line-height:
90
px
;
text-align:
center
;
border:
3
px
dashed
#1c87c9
;
}
</
style
>
</
head
>
<
body
>
<
p
>Je suis centré verticalement</
p
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> p { height: 90px; line-height: 90px; text-align: center; border: 3px dashed #1c87c9; } </style> </head> <body> <p>Je suis centré verticalement</p> </body> </html>