質問編集履歴
2
さらに広い部分のコードをコピペしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,6 +58,102 @@
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
+
さらに広い部分のコードをコピペします。
|
62
|
+
|
63
|
+
html↓
|
64
|
+
|
65
|
+
<div class="lesson-wrapper">
|
66
|
+
|
67
|
+
<div class="container">
|
68
|
+
|
69
|
+
<div class="heading">
|
70
|
+
|
71
|
+
<h2>Learn Where to Get Started!</h2>
|
72
|
+
|
73
|
+
</div>
|
74
|
+
|
75
|
+
<div class="lessons">
|
76
|
+
|
77
|
+
<div class="lesson">
|
78
|
+
|
79
|
+
<div class="lesson-icon">
|
80
|
+
|
81
|
+
<img src="https://prog-8.com/images/html/advanced/html.png">
|
82
|
+
|
83
|
+
<p>HTML & CSS</p>
|
84
|
+
|
85
|
+
</div>
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
css↓
|
90
|
+
|
91
|
+
.lesson-wrapper {
|
92
|
+
|
93
|
+
height: 500px;
|
94
|
+
|
95
|
+
padding-bottom: 80px;
|
96
|
+
|
97
|
+
background-color: #f7f7f7;
|
98
|
+
|
99
|
+
text-align: center;
|
100
|
+
|
101
|
+
}
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
.heading {
|
106
|
+
|
107
|
+
padding-top: 60px;
|
108
|
+
|
109
|
+
padding-bottom: 30px;
|
110
|
+
|
111
|
+
color: #5f5d60;
|
112
|
+
|
113
|
+
}
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
.heading h2 {
|
118
|
+
|
119
|
+
font-weight: normal;
|
120
|
+
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
.lesson {
|
126
|
+
|
127
|
+
float: left;
|
128
|
+
|
129
|
+
width: 25%;
|
130
|
+
|
131
|
+
}
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
.lesson-icon {
|
136
|
+
|
137
|
+
position: relative;
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
.lesson-icon p {
|
144
|
+
|
145
|
+
position: absolute;
|
146
|
+
|
147
|
+
top: 90px;
|
148
|
+
|
149
|
+
width: 100%;
|
150
|
+
|
151
|
+
color: white;
|
152
|
+
|
153
|
+
}
|
154
|
+
|
155
|
+
さらに広い部分のコードをコピペしました。ひょっとして、lesson-wrapperのtext-align:center;が関係ありますか?しかし、width100%というコードを入力すると同時にプレビューでpタグのテキスト(HTML & CSS)がシュッと中央に寄りますので。。。よくわからないです。
|
156
|
+
|
61
157
|
|
62
158
|
|
63
159
|
|
1
htmlとcssの該当部分をコピペしました。すみません初心者で質問にもなれていませんのでうまく伝わるかわからないです。
test
CHANGED
File without changes
|
test
CHANGED
@@ -19,6 +19,42 @@
|
|
19
19
|
なぜそうなるのか、教えてください。
|
20
20
|
|
21
21
|
|
22
|
+
|
23
|
+
html↓
|
24
|
+
|
25
|
+
<div class="lesson-icon">
|
26
|
+
|
27
|
+
<img src="https://prog-8.com/images/html/advanced/html.png">
|
28
|
+
|
29
|
+
<p>HTML & CSS</p>
|
30
|
+
|
31
|
+
</div>
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
css↓
|
38
|
+
|
39
|
+
.lesson-icon {
|
40
|
+
|
41
|
+
position: relative;
|
42
|
+
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
.lesson-icon p {
|
48
|
+
|
49
|
+
position: absolute;
|
50
|
+
|
51
|
+
top: 90px;
|
52
|
+
|
53
|
+
width: 100%;
|
54
|
+
|
55
|
+
color: white;
|
56
|
+
|
57
|
+
}
|
22
58
|
|
23
59
|
|
24
60
|
|