-
Notifications
You must be signed in to change notification settings - Fork 287
/
plain.html
39 lines (37 loc) · 918 Bytes
/
plain.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
36
37
38
39
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Чекбокс: Простой</title>
<style>
body {
margin: 0;
padding: 25px;
font-family: sans-serif;
}
/* Option */
.option {
display: block;
margin-bottom: 0.5em;
}
</style>
</head>
<body>
<label class="check option">
<input class="check__input" type="checkbox">
Первый
</label>
<label class="check option">
<input class="check__input" type="checkbox" checked>
Второй
</label>
<label class="check option">
<input class="check__input" type="checkbox" disabled>
Третий
</label>
<label class="check option">
<input class="check__input" type="checkbox" checked disabled>
Четвёртый
</label>
</body>
</html>