-
Notifications
You must be signed in to change notification settings - Fork 0
/
31-media.html
54 lines (42 loc) · 1.16 KB
/
31-media.html
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
<!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>
/* * {
box-sizing: border-box;
} */
.seton-rast {
float: right;
width: 50%;
background-color: #607D8B;
color: #fff;
text-align: center;
}
.seton-chap {
float: right;
width: 50%;
background-color: #9C27B0;
color: #fff;
text-align: center;
}
/* وقتی اندازه صفحه کمتر از 500 پیکسل شد */
@media only screen and (max-width: 500px) {
.seton-rast,
.seton-chap {
float: none;
width: 100%;
}
}
</style>
</head>
<body>
<p><b>در گوشی موبایل، ستون ها میوفتن زیر هم</b></p>
<div class="zarf">
<div class="seton-rast">ستون 1</div>
<div class="seton-chap">ستون 2</div>
</div>
</body>
</html>