- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Начало путешествия</title>
<meta charset="utf-8">
<link rel="stylesheet" href="world.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="world new-world">
<div class="tree"></div>
<div class="wizard"></div>
<div class="cave"></div>
</div>
</body>
</html>
CSS
.wizard {
top: 244px;
left: 125px;
}
.tree {
top: 178px;
left: 10px;
}
.world {
min-width: 570px;
}
Вы перешли на другую страницу
ЗадачиВыполнено
0
- Переместите мага на
130px
вперёд. - Уменьшите его в 2 раза.
- И продвиньте вперёд на
570px
.