質問編集履歴
1
コードの追加をしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -99,3 +99,53 @@
|
|
99
99
|
/*これでは反応しませんでした。*/
|
100
100
|
|
101
101
|
```
|
102
|
+
|
103
|
+
```CSS
|
104
|
+
|
105
|
+
.lesson {
|
106
|
+
|
107
|
+
float: left;
|
108
|
+
|
109
|
+
width: 25%;
|
110
|
+
|
111
|
+
}
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
.lesson-icon {
|
116
|
+
|
117
|
+
position: relative;
|
118
|
+
|
119
|
+
}
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
.lesson-icon p {
|
124
|
+
|
125
|
+
position: absolute;
|
126
|
+
|
127
|
+
top: 44%;
|
128
|
+
|
129
|
+
width: 100%;
|
130
|
+
|
131
|
+
color: white;
|
132
|
+
|
133
|
+
}
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
.text-contents {
|
138
|
+
|
139
|
+
width: 80%;
|
140
|
+
|
141
|
+
display: inline-block;
|
142
|
+
|
143
|
+
margin-top: 15px;
|
144
|
+
|
145
|
+
font-size: 13px;
|
146
|
+
|
147
|
+
color: #b3aeb5;
|
148
|
+
|
149
|
+
}
|
150
|
+
|
151
|
+
```
|