-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay.html
More file actions
44 lines (44 loc) · 1.34 KB
/
display.html
File metadata and controls
44 lines (44 loc) · 1.34 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Display</title>
<style>
*{
/* padding: 0;margin: 0; */
}
p{
display: none;
}
span {
width: 700px;
height: 200px;
border: 2px solid red;
margin: 100px;
padding: 100px;
display: inline-block;
}
.main {
/* margin: 19spx; */
/* height: 100px;
width: 100px;
border:2px solid red;
box-shadow: -2px 1px 90px 2px blue;
outline: 2px solid green;
outline-offset: 10px;
border-radius: 12px; */
box-sizing: border-box;
height: 100px;
width: 100px;
padding:100px;
border: 2px solid red;
}
</style>
</head>
<body>
<div class="main">i am boxdsssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss</div>
<span>Lorem ipsum dolor sit amet.</span>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa nobis magnam, modi reprehenderit non ipsam libero temporibus nostrum sunt fuga cumque dolore mollitia quaerat quidem assumenda laudantium debitis! Dolorum, omnis.</p>
</body>
</html>