[CSS] 절대배치

정은아·2022년 9월 19일
0
<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>절대 배치</title>
  <style>
  div {
  		display : inline-block;
		position : absolute; /*절대배치*/
		border : 1px solid lightgray; }
  div > p { /*div의 자식 p*/
  			display : inline-block;
			position : absolute; /*절대배치*/
			height : 20px;
			width : 15px;
			background : lightgray; }
 </style>
 </head>
 <body>
  <h3> Merry Christmas!</h3>
  <hr>
  <p> 예수님이 탄생하셨습니다. </p>
  <div>
  	<img src="../images/christmastree.png"
	 width="200" height="200" alt="크리스마스트리">
	<p style="left:50px; top:30px">M</p>
	<p style="left:100px; top:0px">E</p>
	<p style="left:100px; top:80px">R</p>
	<p style="left:150px; top:110px">R</p>
	<p style="left:30px; top:130px">Y</p>
	<p style="left:50px; top:160px"></p>
	<p style="left:20px; top:30px"></p>
	<p style="left:80px; top:170px"></p>

 </body>
</html>
position : absolute; 를 사용하면 HTML태그를 절대 위치에
배치해 둘 수 있다. 절대 위치는 left, top, bottom,right프로퍼티 값으로
정하며, 이 값들은 부모 태그 안에서의 상대 좌표이다.

profile
꾸준함의 가치를 믿는 개발자

0개의 댓글