카테고리 없음

CSS position fixed 사용하기 3

도피디 2024. 11. 24. 15:44
반응형
<!DOCTYPE html>
<html lang="kr">
<head>
<title>The Nick Times</title>
<style>
body {
height: 1000vh;
margin: 20px;
}
div {
width: 300px;
height: 300px;
}
#green {
background-color: teal;
position: fixed;
opacity: 0.2;
}
#different {
background-color: wheat;
}
</style>
</head>
<body>
<div id="green"></div>
<div id="different"></div>
</body>
</html>

 

 

 

 

 

결과

 

 

반응형