Files
uni-web-site/old/lectures/lec2/part2/task1.css
2026-02-26 21:55:48 +10:00

23 lines
714 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.main > p:last-child{
color:green;
}
/*
<div class="menu">
<ol>
<li><a href="#">Комбинация селекторов</a></li>
<li><a href="#">Селекторы атрибутов</a></li>
</ol>
<p>CSS селекторы</p>
</div>
<div class="main">
<h2>Комбинация селекторов</h2>
<img src="tree.png">
<p> Различают следующие виды селекторов: </p>
<ol>
<li><a href="#">вложенный селектор;</a></li>
<li><a href="#">родительский селектор;</a></li>
</ol>
<p> Соединение селекторов</p> --- ВОТ ЕГО КРАСИМ!!!
</div>
*/