forked from dglazkov/Web-Components-Polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.css
More file actions
41 lines (36 loc) · 637 Bytes
/
debug.css
File metadata and controls
41 lines (36 loc) · 637 Bytes
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
40
41
element {
border: 30px solid #eee;
display: block;
position: relative;
}
element::before {
content: '<element>';
position: absolute;
top: -30px;
left: -30px;
padding: 5px 5px;
}
template {
border: 30px solid #ccc;
display: block;
position: relative;
}
template::before {
content: '<template>';
position: absolute;
top: -30px;
left: -30px;
padding: 5px 5px;
}
content {
border: 30px solid #ccc;
display: block;
position: relative;
}
content::before {
content: '<content>';
position: absolute;
top: -30px;
left: -30px;
padding: 5px 5px;
}