테스트 사이트 - 개발 중인 베타 버전입니다

css position Overlapping Elements(겹치는 요소들)

· 8년 전 · 2037

Overlapping Elements(겹치는 요소들)

 

 

요소가 배치되면 다른 요소와 겹칠 수 있습니다.

 

이 z-index속성은 요소의 스택 순서를 지정합니다.이 요소는 다른 요소의 앞에 또는 뒤에 있어야합니다.

 

요소는 양수 또는 음수 스택 순서를 가질 수 있습니다.

 


 

 

img {

    position: absolute;

    left: 0px;

    top: 0px;

    z-index: -1;

}

 

 

 

<!DOCTYPE html>

<html>

<head>

<style>

img {

    position: absolute;

    left: 0px;

    top: 0px;

    z-index: -1;

}

</style>

</head>

<body>

 

<h1>This is a heading</h1>

<img src="w3css.gif" width="100" height="140">

<p>Because the image has a z-index of -1, it will be placed behind the text.</p>

 

</body>

</html>



댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

게시글 목록

번호 제목
3015
3014
3013
3012
3011
3010
3008
3007
3006
3005
3004
3003
3002
3001
3000
2999
2998
2997
2996
2995
2994
2993
2992
2991
2989
2988
2987
2986
2985
2984