質問編集履歴

2

誤字の修正です

2019/07/03 08:58

投稿

sumayu
sumayu

スコア11

test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  教えていただきたいです。宜しくお願い致します。
14
14
 
15
-
15
+ (シングルカラムページのメインビジュアル画像の設定です。)
16
16
 
17
17
 
18
18
 

1

cssを追加しました。

2019/07/03 08:58

投稿

sumayu
sumayu

スコア11

test CHANGED
File without changes
test CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  cssで#wrapで設定しましたが変わりません。
6
6
 
7
+
8
+
9
+ aboutが想定通りに効かないです。
10
+
7
11
  どこが間違っているかわかる方いらっしゃいましたら
8
12
 
9
13
  教えていただきたいです。宜しくお願い致します。
@@ -100,6 +104,130 @@
100
104
 
101
105
  ```css
102
106
 
107
+ @charset "UTF-8";
108
+
109
+
110
+
111
+ body {
112
+
113
+ margin: 0;
114
+
115
+ padding: 0;
116
+
117
+ background-color: #cccccc;
118
+
119
+ color: #333333;
120
+
121
+ font-size: 15px;
122
+
123
+ line-height: 2;
124
+
125
+ }
126
+
127
+
128
+
129
+ p,h1,h2,h3,h4,h5,h6 {
130
+
131
+ margin-top: 0;
132
+
133
+ }
134
+
135
+
136
+
137
+ img {
138
+
139
+ vertical-align: bottom;
140
+
141
+ }
142
+
143
+
144
+
145
+ ul {
146
+
147
+ margin: 0;
148
+
149
+ padding: 0;
150
+
151
+ }
152
+
153
+
154
+
155
+ a {
156
+
157
+ color: #3583aa;
158
+
159
+ text-decoration: none;
160
+
161
+ }
162
+
163
+
164
+
165
+ a:visited {
166
+
167
+ color: #788d98;
168
+
169
+ }
170
+
171
+
172
+
173
+ a:hover {
174
+
175
+ text-decoration: underline;
176
+
177
+ }
178
+
179
+
180
+
181
+ header {
182
+
183
+ width: 960px;
184
+
185
+ height: 100px;
186
+
187
+ margin: 0 auto;
188
+
189
+ }
190
+
191
+
192
+
193
+ #wrap {
194
+
195
+ clear: both;
196
+
197
+ }
198
+
199
+
200
+
201
+ .content {
202
+
203
+ width: 960px;
204
+
205
+ margin: 0 auto;
206
+
207
+ }
208
+
209
+
210
+
211
+ footer {
212
+
213
+ text-align: center;
214
+
215
+ color: #ffffff;
216
+
217
+ padding: 20px 0;
218
+
219
+ }
220
+
221
+
222
+
223
+ footer small {
224
+
225
+ font-size: 12px;
226
+
227
+ }
228
+
229
+
230
+
103
231
  #about {
104
232
 
105
233
  background-image: url(../images/bg-about.jpg);
@@ -116,4 +244,16 @@
116
244
 
117
245
 
118
246
 
247
+ #wrap {
248
+
249
+ clear: both;
250
+
251
+ background-color: #ffffff;
252
+
253
+ margin-top: 220px;
254
+
255
+ }
256
+
257
+
258
+
119
259
  ```