Свойства CSS: Как установить левый край элемента абсолютного позиционирования элемента деления справа от левого края его ближайшего предка?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<title>How to set the left edge of the absolute positioned of division element to the right of the left edge of its nearest positioned ancestor</title>
<style type="text/css">
.w3r {
position: relative;
width: 300px;
height: 150px;
border: 3px solid #CC63FF;
}
.w3r1 {
position: absolute;
left: 60px;
width: 150px;
height: 100px;
border: 3px solid #FF36CC;
}
</style>
</head>
<body>
<p><strong>w3resource Tutorial</strong></p>
<div class="w3r">This div element position is: relative;
<div class="w3r1">This div element position is: absolute.</div>
</div>
</body>
</html>
Демонстрация в реальном времени:
См. Перо слева от w3resource ( @ w3resource ) на CodePen .
Поддерживаемый браузер
да | да | да | да | да |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code