Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS의 상대 위치 지정

<시간/>

상대 위치 지정을 사용하면 요소가 일반 위치를 기준으로 배치됩니다. 이를 위해 위치:상대를 사용합니다.

예시

이제 예를 살펴보겠습니다 -

<!DOCTYPE html>
<html>
<head>
<style>
div.demo {
   position: relative;
   color: white;
   background-color: orange;
   border: 2px dashed blue;
   left: 50px;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<p>This is demo text.</p>
<p>This is demo text.</p>
<div class="demo">
position: relative;
</div>
<p>This is another demo text.</p>
</body>
</html>

출력

CSS의 상대 위치 지정