-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
35 lines (30 loc) · 1.03 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Технические работы – Генератор превью для телеграм</title>
</head>
<body style="height: 100vh; margin: auto;">
<style>
.vyrovnyat {
display: table;
width: 100%;
height: 7em;
/* работает также как min-height, то есть будет растягиваться пока не поместится всё содержимое */
text-align: center;
background: #fff5d7;
height: 100vh
}
.vyrovnyat div {
display: table-cell;
vertical-align: middle;
font-size: 24px;
font-weight: bold;
}
</style>
<div class="vyrovnyat">
<div>Технические работы<br>Скоро тут будет что-то новое…</div>
</div>
</body>
</html>