回答編集履歴
2
追記しました。
test
CHANGED
@@ -23,3 +23,85 @@
|
|
23
23
|
}
|
24
24
|
|
25
25
|
```
|
26
|
+
|
27
|
+
---
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
追記していただいたCSSに追加しました。ご確認お願いします。
|
32
|
+
|
33
|
+
```CSS
|
34
|
+
|
35
|
+
.posts-index {
|
36
|
+
|
37
|
+
position: relative;
|
38
|
+
|
39
|
+
padding: 5px 10px;
|
40
|
+
|
41
|
+
background-color: white;
|
42
|
+
|
43
|
+
overflow: hidden;
|
44
|
+
|
45
|
+
}
|
46
|
+
|
47
|
+
.post-left {
|
48
|
+
|
49
|
+
float: left;
|
50
|
+
|
51
|
+
/* width: 10%; */
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
/* 追加 */
|
56
|
+
|
57
|
+
width: 170px;
|
58
|
+
|
59
|
+
height: 120px;
|
60
|
+
|
61
|
+
overflow: hidden;
|
62
|
+
|
63
|
+
}
|
64
|
+
|
65
|
+
.post-left img {
|
66
|
+
|
67
|
+
/*
|
68
|
+
|
69
|
+
width: 170px;
|
70
|
+
|
71
|
+
height: 120px;
|
72
|
+
|
73
|
+
*/
|
74
|
+
|
75
|
+
/* 追加 */
|
76
|
+
|
77
|
+
display: block;
|
78
|
+
|
79
|
+
width: 100%;
|
80
|
+
|
81
|
+
height: 100%;
|
82
|
+
|
83
|
+
object-fit: cover;
|
84
|
+
|
85
|
+
}
|
86
|
+
|
87
|
+
.post-right {
|
88
|
+
|
89
|
+
float: left;
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
/* width: 90%; */
|
94
|
+
|
95
|
+
width: calc(100% - 130px - 170px);
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
padding-left: 130px;
|
100
|
+
|
101
|
+
margin: 8px 0;
|
102
|
+
|
103
|
+
text-align: left;
|
104
|
+
|
105
|
+
}
|
106
|
+
|
107
|
+
```
|
1
修正しました。
test
CHANGED
@@ -12,6 +12,10 @@
|
|
12
12
|
|
13
13
|
.post-box img {
|
14
14
|
|
15
|
+
width: 100%;
|
16
|
+
|
17
|
+
height: 100%;
|
18
|
+
|
15
19
|
object-fit: cover;
|
16
20
|
|
17
21
|
display: block; /* 不要かもしれません */
|