質問編集履歴

1

画像追加

2020/11/03 10:20

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -2,17 +2,15 @@
2
2
 
3
3
  ![イメージ説明](20ee847ac927a38f8b30070c7c6713d9.png)
4
4
 
5
+ https://gyazo.com/5f354c7e4a30f777ea39aadfaf5efab2
6
+
7
+ https://gyazo.com/12a139f270d9b28749918f59b5eae677
8
+
9
+ https://gyazo.com/dd7b1cc0adc8b3f7936d214a9663e086
5
10
 
6
11
 
7
- 画面縮小時にデザインが崩れないように実装したいです。
8
12
 
9
- レスポシブ対応は@media screen and (min-width: 769px)で実装して、
13
+ 画面縮小時,段階によってデザイが変わってしまうのですが、png添付した2カラムの状態で縮小できるように実装しです。
10
-
11
- SPは1カラム、PCは2カラムのデザインを保ちたいのですが、
12
-
13
- MAX~769px の途中でどうしてもデザインが崩れてしまいます。
14
-
15
-
16
14
 
17
15
 
18
16
 
@@ -21,6 +19,16 @@
21
19
 
22
20
 
23
21
  ```HTML
22
+
23
+ <section class="p-about">
24
+
25
+ <div class="c-heading">
26
+
27
+ <h2 class="c-heading__ttl">ABOUT</h2>
28
+
29
+ <p class="c-heading__txt">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit est facilis maiores, perspiciatis</p>
30
+
31
+ </div>
24
32
 
25
33
       <ul class="p-photoList">
26
34
 
@@ -39,6 +47,70 @@
39
47
 
40
48
 
41
49
  ```CSS
50
+
51
+
52
+
53
+ @media screen and (max-width: 768px) {
54
+
55
+ /* SP style */
56
+
57
+ .p-about {
58
+
59
+ padding: 70px 20px;
60
+
61
+ }
62
+
63
+ .p-photoList {
64
+
65
+ display:block;
66
+
67
+ margin-top: 70px;
68
+
69
+ margin-right: auto;
70
+
71
+ margin-left: auto;
72
+
73
+ }
74
+
75
+
76
+
77
+ .p-photoList__Photo {
78
+
79
+ height: 400px;
80
+
81
+ border-radius: 20px;
82
+
83
+ }
84
+
85
+
86
+
87
+ .p-photoList__Photo--small {
88
+
89
+ height: 400px;
90
+
91
+ border-radius: 20px;
92
+
93
+ }
94
+
95
+
96
+
97
+ .p-photoList__item:nth-child(-n+3){
98
+
99
+ margin-bottom: 10px;
100
+
101
+ }
102
+
103
+ }
104
+
105
+ @media screen and (min-width: 769px) {
106
+
107
+ /* PC style */
108
+
109
+ .p-about {
110
+
111
+ padding: 100px 0;
112
+
113
+ }
42
114
 
43
115
  .p-photoList {
44
116
 
@@ -100,6 +172,8 @@
100
172
 
101
173
  }
102
174
 
175
+ }
176
+
103
177
  ```
104
178
 
105
179
  ### 試したこと