웹퍼블리싱/CSS
[CSS] 모달창 기본소스
http://portfolio.wonpaper.net
2023. 8. 21. 09:55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<style>
body {
margin:0;
}
div {
box-sizing:border-box;
}
.black-bg {
width:100%;height:100%;
background:rgba(0,0,0,0.5);
position:fixed;padding:20px;
}
.white-bg {
width:100%;background:white;
border-radius:8px;
padding:20px;
}
</style>
<body>
<div class="black-bg">
<div class="white-bg">
<h4>제목입니다.</h4>
<p>상세페이지 내용입니다.</p>
</div>
</div>
</body>
|
cs |