Свойства CSS: как разместить элемент на определенном расстоянии от верхней части документа
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<title>How to place an element at a certain distance from top of the document</title>
<style type="text/css">
div.w3r {
position: relative;
width: 300px;
height: 150px;
border: 3px solid #3333FF
}
div.w3r1 {
position: absolute;
top: 50px;
width: 150px;
height: 80px;
border: 3px solid #FF9900
}
</style>
</head>
<body>
<h1><strong>w3resource Tutorial</strong></h1>
<div class="w3r">This division element position: relative.
<div class="w3r1">This division element position: absolute. It is placed 50 pixels below the top edge.</div>
</div>
</body>
</html>
Демонстрация в реальном времени:
См. Топ-ответ Pen по w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | да |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code