A Back-End Software Developer merrily working on a front-end project with HTML and CSS...
HTML for Dummies
Tailwind: The Good
Tailwind: The Bad
Tailwind: The Ugly
...getting confused af because the color of the text is not correct...
HTML for Dummies
Tailwind: The Good
Tailwind: The Bad
Tailwind: The Ugly
...Even when he clearly specified that the text color should be blue, because the orange value is not important...
32
33
34}
35
36article p {
37 font-size: 1.3em;
38 color: orange !important;
39}
40
41section p {
42 color: blue;
43 font-style: italic;
44 max-width: 60ch;
45}
46
47section p::first-letter {
48 font-family: Arial, Helvetica, sans-serif;
49 font-weight: 1.3em;
50
51
52
53
54
55
56
57
58
59