/
mezentsevs
/
examples
Обзор
Документация
Войти
/
mezentsevs
/
examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
css/example_001.html
52 строки
929 B
mezentsevs
feat(css): add example_001.html
24 окт 2025, 16:22
24 окт 2025, 16:22
b39ed76
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div { color: red; } .content:first-child { color: green; } .content.content { color: cyan; /* applied */ } .wrapper p { color: blue; } .content { color: orange; } .wrapper { color: gray; } .wrapper * { color: black; } </style> </head> <body> <div class="wrapper"> <p class="content"> Content </p> </div> </body> </html> <!-- Selectors weights: Inline style = 1000; ID = 100; Class, attribute, pseudo-class = 10; Tag, pseudo-element = 1; -->