-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMedia_Query.html
More file actions
64 lines (56 loc) · 1.38 KB
/
Copy pathMedia_Query.html
File metadata and controls
64 lines (56 loc) · 1.38 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container{
border: 2px solid black;
background-color: aquamarine;
display: flex;
flex-direction: row;
width: 400px;
}
#boxleft{
background-color: beige;
border: 1px solid blue;
width: 47%;
margin: 3px;
padding: 2px;
display: flex;
flex-direction: column;
}
#boxright{
background-color: yellow;
border: 1px solid brown;
width: 47%;
margin: 3px;
padding: 2px;
}
p{
border: 1px solid red;
}
img{
height: 170px;
width: 170px;
}
@media (max-width: 640px) {
.container{
flex-direction: column;
}
}
</style>
</head>
<body>
<div class="container">
<div id="boxleft">
<p>Text1</p>
<p>Text2</p>
</div>
<div id="boxright">
<img src="Profile1.jpeg" width="70px" height="70px">
</div>
</div>
</body>
</html>