Selectors

Все о селекторах

by fersterin

HTML

<div class="dog">
	<ul>
		<li><a href="#">Lorem.</a></li>
		<li><a href="#">Rerum.</a></li>
		<li><a href="#">Sint!</a></li>
		<li><a href="#">Praesentium.</a></li>
		<li><a href="#">Nemo.</a></li>
		<li><a href="#">Nostrum?</a></li>
	</ul>
</div>
<div>
	<input type="radio" value="Первый" name="gender">Первый<br>
	<input type="radio" value="Второй" name="gender">Второй<br>
	<input type="checkbox" value="Россия" name="country">Россия<br>
	<input type="checkbox" value="США" name="country">США<br>
</div>

CSS

input[type=radio]:checked {
	height: 15px;
    width: 15px;
}