質問編集履歴
3
修正
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -1,487 +1,5 @@
|
|
|
1
|
-
### 前提・実現したいこと
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Html/CSSでコーディング練習をしているのですが、
|
|
5
|
-
footerの位置がずれてしまいます。
|
|
6
|
-
|
|
7
|
-
body内にあるarticleと同じ位置に指定したいです。
|
|
8
|
-
|
|
9
|
-
初心者です。
|
|
10
|
-
|
|
11
|
-
何度直してもあっちを直せばこっちが詰まるの状態で苦しいです。
|
|
12
|
-
助けてください
|
|
13
|
-
|
|
14
|
-
### 発生している問題・エラーメッセージ
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
・無駄なコードが多い気がする。
|
|
18
|
-
・footerの位置がarticleよりも左に来てしまうのを解消したい。
|
|
19
|
-
・コンテンツの横幅は960pxとする
|
|
20
|
-
・ブラウザの横幅を変更してもコンテンツが中央にある
|
|
21
|
-
・ブラウザの横幅を960px以下に狭めてもレイアウトが崩れない
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
### 該当のソースコード
|
|
25
|
-
|
|
26
|
-
```HTML・CSS
|
|
27
|
-
<!DOCTYPE html>
|
|
28
|
-
<html lang="ja">
|
|
29
|
-
<head>
|
|
30
|
-
<meta charset="utf-8">
|
|
31
|
-
<title>novelsite</title>
|
|
32
|
-
<meta name="description" content="novelsite">
|
|
33
|
-
<meta name="keywords" content="小説,なろう,週一更新">
|
|
34
|
-
<link rel="stylesheet" href="mitame.css">
|
|
35
|
-
<link rel="stylesheet" href="novel.css">
|
|
36
|
-
</head>
|
|
37
|
-
|
|
38
|
-
<body>
|
|
39
|
-
<header>
|
|
40
|
-
<div class="Headerinner">
|
|
41
|
-
<div class="clearfix">
|
|
42
|
-
<div class="headertop">
|
|
43
|
-
<div class="logo">
|
|
44
|
-
<a href="#"><img src="1.png" width="220px" height="35px"></a>
|
|
45
|
-
<p>header</p>
|
|
46
|
-
</div>
|
|
47
|
-
<div class="search">
|
|
48
|
-
<form action="#">
|
|
49
|
-
<input type="search" name="search" placeholder=""="小説名・著者で検索">
|
|
50
|
-
<input type="submit" name="submit" value="検索">
|
|
51
|
-
</form>
|
|
52
|
-
</div>
|
|
53
|
-
</div>
|
|
54
|
-
</div>
|
|
55
|
-
</header>
|
|
56
|
-
|
|
57
|
-
<div class="body">
|
|
58
|
-
<div class="tittle_rogo"><img src="1.png" width="960px" height="320px"></div>
|
|
59
|
-
<div class="bodyinner">
|
|
60
|
-
<nav>
|
|
61
|
-
<div class="clearfix">
|
|
62
|
-
<!-- ナビ -->
|
|
63
|
-
<div class="nav">
|
|
64
|
-
<h1><i class="icon"></i>国別ジャンル</h1>
|
|
65
|
-
<ul>
|
|
66
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">日本</a></li>
|
|
67
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">カンボジア</a></li>
|
|
68
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">アメリカ</a></li>
|
|
69
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">中国</a></li>
|
|
70
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">フランス</a></li>
|
|
71
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">ヨーロッパ</a></li>
|
|
72
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">ドイツ</a></li>
|
|
73
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">ロシア</a></li>
|
|
74
|
-
</ul>
|
|
75
|
-
</div>
|
|
76
|
-
<div class="nav2">
|
|
77
|
-
<h1><i class="icon"></i>ジャンル特集</h1>
|
|
78
|
-
<ul>
|
|
79
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">和風</a></li>
|
|
80
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">ファンタジー</a></li>
|
|
81
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">ミステリー</a></li>
|
|
82
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">歴史</a></li>
|
|
83
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">アニメ化</a></li>
|
|
84
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">ドキュメン</a></li>
|
|
85
|
-
<li><a href="#"><img src="1.png" width="20px" height="20px">その他</a></li>
|
|
86
|
-
</ul>
|
|
87
|
-
</div>
|
|
88
|
-
</div>
|
|
89
|
-
</nav>
|
|
90
|
-
|
|
91
|
-
<article>
|
|
92
|
-
<div class="clearfix">
|
|
93
|
-
<div class="top">
|
|
94
|
-
<!-- 新着novel -->
|
|
95
|
-
<h1><i class="icon"></i>新着小説</h1>
|
|
96
|
-
<!-- 新着novel1 -->
|
|
97
|
-
<div class="newnovel">
|
|
98
|
-
<a href="#"><img SRC="1.png" width="90px" height="90px></a>
|
|
99
|
-
<p>BTCfamily</p>
|
|
100
|
-
</div>
|
|
101
|
-
<!-- 新着novel1end -->
|
|
102
|
-
<!-- 新着novel1 -->
|
|
103
|
-
<div class="newnovel">
|
|
104
|
-
<a href="#"><img SRC="1.png" width="70px" height="70px"></a>
|
|
105
|
-
<p>sky near the blue</p>
|
|
106
|
-
</div>
|
|
107
|
-
<!-- 新着novel1end -->
|
|
108
|
-
<!-- 新着novel1 -->
|
|
109
|
-
<div class="newnovel">
|
|
110
|
-
<a href="#"><img SRC="1.png" width="70px" height="70px"></a>
|
|
111
|
-
<p>rose fantasy</p>
|
|
112
|
-
</div>
|
|
113
|
-
<!-- 新着novel1end -->
|
|
114
|
-
<!-- 新着novel1 -->
|
|
115
|
-
<div class="newnovel">
|
|
116
|
-
<a href="#"><img SRC="1.png" width="70px" height="70px"></a>
|
|
117
|
-
<p>alon nepia</p>
|
|
118
|
-
</div>
|
|
119
|
-
<!-- 新着novel1end -->
|
|
120
|
-
<!-- 新着novel1 -->
|
|
121
|
-
<div class="newnovel">
|
|
122
|
-
<a href="#"><img SRC="1.png" width="90px" height="90px></a>
|
|
123
|
-
<p>soy spy</p>
|
|
124
|
-
</div>
|
|
125
|
-
<!-- 新着novel1end -->
|
|
126
|
-
</div>
|
|
127
|
-
|
|
128
|
-
<!-- 和風小説の勧め -->
|
|
129
|
-
<div class="middle">
|
|
130
|
-
<h1><i class="icon"></i>和風小説のすすめ</h1>
|
|
131
|
-
<div class="middleinner">
|
|
132
|
-
<div class="topics"><img src="1.png" width="230px" height="150px"></div>
|
|
133
|
-
<div class="middleinnerright">
|
|
134
|
-
<P>旧ロシアから来た子供フェレッチ・モンモルドー。彼は養父の財産をすべて使って世界を救ってみせるのだ、といって極東までやってきた。ごく狭い限られた</P>
|
|
135
|
-
<P>地域でロボットともに暮らす旧日本にいる折神博士と名乗る理論提唱者に会いに来た。しかし、博士には野望はなく、彼のパトロンに飼いならされていた</p>
|
|
136
|
-
<p>虐待されていた少女が親殺しの罪となった事件を通して彼らは・・・</p>
|
|
137
|
-
</div>
|
|
138
|
-
<a href="#"><img src="1.png" width="20px" height="20px" class="right">続きを読む</a>
|
|
139
|
-
</div>
|
|
140
|
-
</div>
|
|
141
|
-
|
|
142
|
-
<div class="under">
|
|
143
|
-
<div class="clearfix">
|
|
144
|
-
<!-- 簡単!おすすめnovel -->
|
|
145
|
-
<h1><i class="icon"></i>小説の書き方</h1>
|
|
146
|
-
<div class="undertop">
|
|
147
|
-
<div class="clearfix">
|
|
148
|
-
<div class="pushnovels1"><img src="1.png" width="230px" height="120px"></div>
|
|
149
|
-
|
|
150
|
-
<h2>リドルストーリー</h2>
|
|
151
|
-
<P>美女と虎に代表される答えの用意されていない小説。日本では芥川龍之介の”藪の中”が有名</P>
|
|
152
|
-
<P>それではリドルストーリー作品を紹介しましょう</P>
|
|
153
|
-
|
|
154
|
-
<div class="bottom_right"><a href="#"><img src="1.png" width="20px" height="20px">続きを読む</a></div>
|
|
155
|
-
</div>
|
|
156
|
-
</div>
|
|
157
|
-
<div class="underbottom">
|
|
158
|
-
<div class="pushnovels2"><img src="1.png" width="230px" height="120px"></div>
|
|
159
|
-
<h2>エヴァで一躍有名に⁉ 物語構成序破急とは</h2>
|
|
160
|
-
|
|
161
|
-
<P>物語の構成でおなじみの起承転結。物語の鉄則として欠かせない存在ですが、最近の構成には序破急も人気です</P>
|
|
162
|
-
<P>さて、序破急とは・・・?</P>
|
|
163
|
-
<div class="bottom_right"><a href="#"><img src="1.png" width="20px" height="20px">続きを読む</a></div>
|
|
164
|
-
</div>
|
|
165
|
-
</div>
|
|
166
|
-
</div>
|
|
167
|
-
</div>
|
|
168
|
-
</article>
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
<!-- 広告 -->
|
|
172
|
-
<aside>
|
|
173
|
-
<div class="clearfix">
|
|
174
|
-
<div class="aside">
|
|
175
|
-
<!-- 広告1 -->
|
|
176
|
-
<img src="ookami-illut1.png" height="330px" width="160px">
|
|
177
|
-
<!-- 広告2 -->
|
|
178
|
-
<img src="ookami-illut1.png" height="330px" width="160px">
|
|
179
|
-
</div>
|
|
180
|
-
</div>
|
|
181
|
-
</aside>
|
|
182
|
-
</div>
|
|
183
|
-
</div>
|
|
184
|
-
<!----- メインコンテンツ END ----->
|
|
185
|
-
|
|
186
|
-
<!----- フッター ----->
|
|
187
|
-
<footer>
|
|
188
|
-
<div class="footerinner">
|
|
189
|
-
<div class="clearfix">
|
|
190
|
-
<ul>
|
|
191
|
-
<li><a href="#">サイトマップ</a></li>
|
|
192
|
-
<li><a href="#">プライバシーポリシー</a></li>
|
|
193
|
-
<li><a href="#">お問い合わせ</a></li>
|
|
194
|
-
<li><a href="#">ご利用ガイド</a></li>
|
|
195
|
-
</ul>
|
|
196
|
-
|
|
197
|
-
</div>
|
|
198
|
-
<p>Copyright©real voice pro All RightsReserved.</p>
|
|
199
|
-
</div>
|
|
200
|
-
</footer>
|
|
201
|
-
</body>
|
|
202
|
-
</html>
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
__________________________________________
|
|
206
|
-
以下CSS
|
|
207
|
-
_____________________________________
|
|
208
|
-
/* float解除 */
|
|
209
|
-
.clearfix::after {
|
|
210
|
-
content: " ";
|
|
211
|
-
display: block;
|
|
212
|
-
clear: both;
|
|
213
|
-
}
|
|
214
|
-
/* ヘッダー */
|
|
215
|
-
header{
|
|
216
|
-
background:white;
|
|
217
|
-
border-bottom:1px solid #cccccc;
|
|
218
|
-
}
|
|
219
|
-
.Headerinner{
|
|
220
|
-
width:960px;
|
|
221
|
-
margin-left: auto;
|
|
222
|
-
margin-right: auto;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.headertop{
|
|
226
|
-
height: 70px;
|
|
227
|
-
}
|
|
228
|
-
header a{
|
|
229
|
-
text-decoration: none;
|
|
230
|
-
}
|
|
231
|
-
header p{
|
|
232
|
-
color:#664433;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.logo{
|
|
236
|
-
float: left;
|
|
237
|
-
}
|
|
238
|
-
.search{
|
|
239
|
-
float:right;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
.HeaderNav ul{
|
|
245
|
-
list-style: none;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.HeaderNav li{
|
|
249
|
-
background: white;
|
|
250
|
-
width:191.2px;
|
|
251
|
-
height: 30px;
|
|
252
|
-
text-align: center;
|
|
253
|
-
margin: 10 auto;
|
|
254
|
-
padding-top: 10px;
|
|
255
|
-
float:left;
|
|
256
|
-
}
|
|
257
|
-
header li+li{
|
|
258
|
-
box-sizing: border-box;
|
|
259
|
-
border-left: 1px solid #664433; /* 区切り線 */
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
/* ボディー 全体*/
|
|
264
|
-
.body{
|
|
265
|
-
background-color: #F4F7DA;
|
|
266
|
-
}
|
|
267
|
-
h1{
|
|
268
|
-
text-align: left;
|
|
269
|
-
height:30px;
|
|
270
|
-
background-color: pink;
|
|
271
|
-
font-size: 22px;
|
|
272
|
-
color: white;
|
|
273
|
-
padding-top: 4px;
|
|
274
|
-
padding-left: 5px;
|
|
275
|
-
|
|
276
|
-
/* 以下で角丸設定 */
|
|
277
|
-
border-radius: 10px;
|
|
278
|
-
-webkit-border-radius: 10px;
|
|
279
|
-
-moz-border-radius: 10px;
|
|
280
|
-
}
|
|
281
|
-
/* 以下でアイコンを文章の左へ挿入 */
|
|
282
|
-
.icon{
|
|
283
|
-
display: inline-block;
|
|
284
|
-
width: 30px;
|
|
285
|
-
height: 20px;
|
|
286
|
-
background: url(ookami-illust1.png) no-repeat;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.tittle_rogo{
|
|
290
|
-
margin: 5px auto;
|
|
291
|
-
text-align: center;
|
|
292
|
-
}
|
|
293
|
-
.tittle_rogo img{
|
|
294
|
-
width:960px;
|
|
295
|
-
margin-left: auto;
|
|
296
|
-
margin-right: auto;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.bodyinner{
|
|
300
|
-
width:960px;
|
|
301
|
-
text-align: center;
|
|
302
|
-
margin-left: auto;
|
|
303
|
-
margin-right: auto;
|
|
304
|
-
|
|
305
|
-
}
|
|
306
|
-
/* ボディーの中にあるナビ */
|
|
307
|
-
body nav{
|
|
308
|
-
float: left;
|
|
309
|
-
text-align: left;
|
|
310
|
-
}
|
|
311
|
-
body nav a{
|
|
312
|
-
text-decoration: none;
|
|
313
|
-
}
|
|
314
|
-
body nav li{
|
|
315
|
-
padding: 11px 5px;
|
|
316
|
-
|
|
317
|
-
}
|
|
318
|
-
nav li + li{
|
|
319
|
-
border-top:1px dotted #664433; /* 区切り線 */
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
.nav{
|
|
323
|
-
width: 180px;
|
|
324
|
-
height: 360px;
|
|
325
|
-
background: white;
|
|
326
|
-
margin:10px;
|
|
327
|
-
padding-bottom: -5px;
|
|
328
|
-
}
|
|
329
|
-
.nav2{
|
|
330
|
-
width: 180px;
|
|
331
|
-
height: 320px;
|
|
332
|
-
background: white;
|
|
333
|
-
margin:10px;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
body article{
|
|
337
|
-
width: 590px;
|
|
338
|
-
float:left;
|
|
339
|
-
margin:5px;
|
|
340
|
-
}
|
|
341
|
-
/* ボディーの中にある記事上 */
|
|
342
|
-
.top{
|
|
343
|
-
background: white;
|
|
344
|
-
margin-bottom: 20px;
|
|
345
|
-
}
|
|
346
|
-
.newnovel{
|
|
347
|
-
margin:10px 0px;
|
|
348
|
-
padding: 0px 13px;
|
|
349
|
-
display: inline-block;
|
|
350
|
-
}
|
|
351
|
-
.newnovel p{
|
|
352
|
-
font-size: 6px;
|
|
353
|
-
}
|
|
354
|
-
/* ボディーの中にある記事中 */
|
|
355
|
-
.middle{
|
|
356
|
-
background: white;
|
|
357
|
-
height: 320px;
|
|
358
|
-
margin-bottom:10px;
|
|
359
|
-
}
|
|
360
|
-
.middleinner{
|
|
361
|
-
margin:10px;
|
|
362
|
-
padding-right: 10px;
|
|
363
|
-
height: 290px;
|
|
364
|
-
text-align:right;
|
|
365
|
-
}
|
|
366
|
-
.topics{
|
|
367
|
-
height: 150px;
|
|
368
|
-
margin-bottom: 100px;
|
|
369
|
-
margin-right: 20px;
|
|
370
|
-
float: left;
|
|
371
|
-
}
|
|
372
|
-
.middleinnerright{
|
|
373
|
-
height:240px;
|
|
374
|
-
margin:10px;
|
|
375
|
-
text-align: left;
|
|
376
|
-
}
|
|
377
|
-
.right{
|
|
378
|
-
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.middle p{
|
|
382
|
-
font-family: "Comic Sans MS";
|
|
383
|
-
font-size: 15px;
|
|
384
|
-
margin-bottom: 15px;
|
|
385
|
-
|
|
386
|
-
}
|
|
387
|
-
/* ボディーの中にある記事下 */
|
|
388
|
-
.under{
|
|
389
|
-
margin-top: 20px;
|
|
390
|
-
background: white;
|
|
391
|
-
height: 390px;
|
|
392
|
-
}
|
|
393
|
-
.undertop{
|
|
394
|
-
height: 150px;
|
|
395
|
-
padding:25px;
|
|
396
|
-
}
|
|
397
|
-
.underbottom{
|
|
398
|
-
height: 150px;
|
|
399
|
-
padding: 25px;
|
|
400
|
-
}
|
|
401
|
-
.pushnovels1{
|
|
402
|
-
float: left;
|
|
403
|
-
margin-right: 10px;
|
|
404
|
-
}
|
|
405
|
-
.pushnovels2{
|
|
406
|
-
float: left;
|
|
407
|
-
margin-right: 10px;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.undertop h2{
|
|
411
|
-
text-align: left;
|
|
412
|
-
color: #664433;
|
|
413
|
-
|
|
414
|
-
}
|
|
415
|
-
.underbottom h2{
|
|
416
|
-
text-align: left;
|
|
417
|
-
color: #664433;
|
|
418
|
-
}
|
|
419
|
-
.undertop p{
|
|
420
|
-
text-align: left;
|
|
421
|
-
padding-top: 12px;
|
|
422
|
-
}
|
|
423
|
-
.bottom_right{
|
|
424
|
-
text-align: right;
|
|
425
|
-
text-decoration: none;
|
|
426
|
-
color: orange;
|
|
427
|
-
}
|
|
428
|
-
.underbottom p{
|
|
429
|
-
text-align: left;
|
|
430
|
-
padding-top: 12px;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
/* ボディーの中にある広告 */
|
|
434
|
-
body aside{
|
|
435
|
-
width: 160px
|
|
436
|
-
display: flex;
|
|
437
|
-
flex-direction: column;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
}
|
|
441
|
-
/* ボディーの中にあるフッター */
|
|
442
|
-
footer {
|
|
443
|
-
background: white;
|
|
444
|
-
border-top: 1px solid #cccccc;
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.footerinner{
|
|
448
|
-
width: 590px;
|
|
449
|
-
height: 95px;
|
|
450
|
-
margin-left: auto;
|
|
451
|
-
margin-right: auto;
|
|
452
|
-
text-align: center;
|
|
453
|
-
font-size: 16px;
|
|
454
|
-
text-decoration: none;
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.footerinner a{
|
|
458
|
-
text-decoration: none;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.footerinner ul{
|
|
462
|
-
list-style: none;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.footerinner li{
|
|
466
|
-
text-decoration: none;
|
|
467
|
-
padding: 10px;
|
|
468
|
-
text-align: center;
|
|
469
|
-
float:left;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
footer li + li{
|
|
473
|
-
border-left: 1px solid black;
|
|
474
|
-
}
|
|
475
|
-
footer p{
|
|
476
|
-
text-align: center;
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
```
|
|
480
|
-
|
|
481
|
-
### 試したこと
|
|
482
|
-
|
|
483
|
-
WEBで検索していろいろと要素の追加を行いました。
|
|
484
|
-
|
|
485
|
-
### 補足情報(FW/ツールのバージョンなど)
|
|
486
|
-
|
|
487
|
-
Atom
|
|
1
|
+
Atomで書いてchromに反映してCSSのレイアウトを配置していました。
|
|
2
|
+
それを、Atomで書いたものをCode9にアップしたところ、レイアウトが崩れました。
|
|
3
|
+
書いたのに、反映されていないコードもあります。
|
|
4
|
+
|
|
5
|
+
これはなぜでしょうか。
|
2
タグを一個消しました。
title
CHANGED
|
File without changes
|
body
CHANGED
|
File without changes
|
1
誤字の修正を行いました
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
初心者です。
|
|
10
10
|
|
|
11
|
+
何度直してもあっちを直せばこっちが詰まるの状態で苦しいです。
|
|
12
|
+
助けてください
|
|
13
|
+
|
|
11
14
|
### 発生している問題・エラーメッセージ
|
|
12
15
|
|
|
13
16
|
```
|
|
@@ -122,9 +125,9 @@
|
|
|
122
125
|
<!-- 新着novel1end -->
|
|
123
126
|
</div>
|
|
124
127
|
|
|
125
|
-
<!--
|
|
128
|
+
<!-- 和風小説の勧め -->
|
|
126
129
|
<div class="middle">
|
|
127
|
-
<h1><i class="icon"></i>
|
|
130
|
+
<h1><i class="icon"></i>和風小説のすすめ</h1>
|
|
128
131
|
<div class="middleinner">
|
|
129
132
|
<div class="topics"><img src="1.png" width="230px" height="150px"></div>
|
|
130
133
|
<div class="middleinnerright">
|