Карты
Влад Мержевич
Тема:
псевдоэлементы
Сделайте страницу, результат которой показан на рис. 1. Для добавления символов используйте следующие коды: 2660,円 2663,円 2665,円 2666円.
Рис. 1
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Карты</title>
<style>
.c:before { margin-right: 10px; }
.spades:before { content: '2660円'; }
.clubs:before { content: '2663円'; }
.diamonds:before {
content: '2666円';
color: red;
}
.hearts:before {
content: '2665円';
color: red;
}
</style>
</head>
<body>
<p class="c spades">8, 9</p>
<p class="c clubs">8, 9</p>
<p class="c diamonds">7, 10, В</p>
<p class="c hearts">7, 8, 9</p>
</body>
</html>