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
18
›
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
...
<
style
type=
"text/css"
>
div
{
width:
200
px
;
height:
200
px
;
border:
solid
green
;
display:
table-cell
;
vertical-align:
middle
;
}
</
style
>
</
head
>
<
body
>
<
div
>Vertikal ausgerichteter Text</
div
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> ... <style type="text/css"> div{ width: 200px; height: 200px; border: solid green; display: table-cell; vertical-align: middle; } </style> </head> <body> <div>Vertikal ausgerichteter Text</div> </body> </html>