[CSS] 포지션 relative
<!DOCTYPE html>
<html>
<head>
<style>
html{border: 1px solid gray;}
div{border: 5px solid tomato; margin: 10px;}
#me{
position: relative; /*기본값은 static*/
left: 100px;
top: 100px;
} /*offset이라고 불린다*/
</style>
</head>
<body>
<div id="other">other</div>
<div id="parent">parent
<div id="me">me</div>
</div>
</body>
</html>
- 포지션의 기본 값은
static
이다.static
일 때에는#me
의 위치가 적용되지 않으니relative
로 설정해준다.left: 100px
,top:100px
와 같은 설정이 적용되는 것을 볼 수 있다.
Author And Source
이 문제에 관하여([CSS] 포지션 relative), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jong/CSS-포지션-relative저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)