Skip to content

Commit c88d2a7

Browse files
authored
Update style.css
1 parent fb2127e commit c88d2a7

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

028_CSS_Specificity/style.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/*
2+
Selector Specificity Value Calculation
3+
========== ================= ============
4+
p 1 1
5+
.para 10 10
6+
p.para 11 1+10
7+
.child p.para 21 10+1+10
8+
#test 100 100
9+
#test p.para 111 100+1+10
10+
<p style="color: pink;"> 1000 1000
11+
*/
12+
13+
114
body {
215
font-family: 'Poppins', sans-serif;
316
margin: 0;

0 commit comments

Comments
 (0)