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
|
<p>
<title>안녕하세요 하루에 3분</title>
<style>
#t {
width:100px;
height:100px;
background:RGBA(0,0,0,0.3);
border:3px solid black;
position:absolute;
left:50px;
top:50px;
}
#c {
width:100px;
height:100px;
background:yellow;
border-radius: 30px;
border:3px dotted black;
position:absolute;
z-index:-1;
}
</style>
</p>
<div id="t"><br></div>
<div id="c"><br></div>
|
cs |
2020.07.20