質問編集履歴

2

コードブロックというものをつけました。申し訳ございません。。

2016/08/03 02:56

投稿

nogamiyuki
nogamiyuki

スコア5

test CHANGED
File without changes
test CHANGED
@@ -16,6 +16,8 @@
16
16
 
17
17
  --問題が起きている付近のHTML---------
18
18
 
19
+ ```ここに言語を入力
20
+
19
21
  <body>
20
22
 
21
23
  <div class="gridContainer clearfix">
@@ -32,6 +34,8 @@
32
34
 
33
35
 
34
36
 
37
+ ```
38
+
35
39
  ……以下省略
36
40
 
37
41
 
@@ -41,6 +45,8 @@
41
45
 
42
46
 
43
47
  --HTMLに関連しているcss------------
48
+
49
+ ```ここに言語を入力
44
50
 
45
51
  .gridContainer {
46
52
 
@@ -81,6 +87,8 @@
81
87
  text-align: center;
82
88
 
83
89
  }
90
+
91
+ ```
84
92
 
85
93
  ---------------------------
86
94
 

1

HTMLとCSSを足しました。

2016/08/03 02:56

投稿

nogamiyuki
nogamiyuki

スコア5

test CHANGED
File without changes
test CHANGED
@@ -14,11 +14,75 @@
14
14
 
15
15
  ###発生している問題・エラーメッセージ
16
16
 
17
- 問題が起きている箇所のHTML
17
+ --問題が起きている付近のHTML---------
18
18
 
19
+ <body>
20
+
21
+ <div class="gridContainer clearfix">
22
+
23
+ <!--見出し文言-->
24
+
25
+ <div id="header" class="fluid">
26
+
19
- <img src="xxx/xxx/image.svg" alt="" title="画像のテキスト">
27
+ <p class="mo_site_pr"><img src="xxx/xxx/image.svg" alt="" title="画像のテキスト"></p>
28
+
29
+ </div>
30
+
31
+ <!--グローバルナビゲーション-->
32
+
33
+
34
+
35
+ ……以下省略
36
+
37
+
20
38
 
21
39
  ※画像名、パス、タイトルは代替です。
40
+
41
+
42
+
43
+ --HTMLに関連しているcss------------
44
+
45
+ .gridContainer {
46
+
47
+ width: 100%;
48
+
49
+ clear: none;
50
+
51
+ float: none;
52
+
53
+ margin-left: auto;
54
+
55
+ }
56
+
57
+ .clearfix:before, .clearfix:after { content: ""; display: table; }
58
+
59
+ .clearfix:after { clear: both; }
60
+
61
+ .clearfix { *zoom: 1; }
62
+
63
+ .fluid {
64
+
65
+ clear: both;
66
+
67
+ margin-left: 0;
68
+
69
+ width: 100%;
70
+
71
+ float: left;
72
+
73
+ display: block;
74
+
75
+ }
76
+
77
+ .mo_site_pr {
78
+
79
+ padding: 10px 0 0;
80
+
81
+ text-align: center;
82
+
83
+ }
84
+
85
+ ---------------------------
22
86
 
23
87
 
24
88