質問編集履歴

2

引用符、セミコロンの抜けに気づかず中途半端に投稿してしまい申し訳ありません。ご指摘ありがとうございます!

2018/11/16 07:51

投稿

hellohello
hellohello

スコア22

test CHANGED
File without changes
test CHANGED
@@ -40,11 +40,11 @@
40
40
 
41
41
  <body>
42
42
 
43
- <div class="header>
43
+ <div class="header">
44
44
 
45
45
  <img src="333.jpg" class="img-fluid">
46
46
 
47
- <div>
47
+ </div>
48
48
 
49
49
 
50
50
 
@@ -60,9 +60,9 @@
60
60
 
61
61
  ```CSS
62
62
 
63
- img {width 100% /*100vwも試しましたが結果は同様*/
63
+ img {width:100%; /*100vwも試しましたが結果は同様*/
64
64
 
65
-    height: auto}
65
+    height: auto;}
66
66
 
67
67
  ```
68
68
 

1

足りない部分を修正致しました。以後気をつけます。ご指摘ありがとうございます。

2018/11/16 07:51

投稿

hellohello
hellohello

スコア22

test CHANGED
File without changes
test CHANGED
@@ -16,11 +16,41 @@
16
16
 
17
17
  ```HTML
18
18
 
19
+ <!doctype html>
20
+
21
+ <html lang="en">
22
+
23
+ <head>
24
+
25
+ <!-- Required meta tags -->
26
+
27
+ <meta charset="utf-8">
28
+
29
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
30
+
31
+ <link rel="stylesheet" href="3-2-2.css">
32
+
33
+ <!-- Bootstrap CSS -->
34
+
35
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
36
+
37
+
38
+
39
+ <title>test</title>
40
+
41
+ <body>
42
+
19
43
  <div class="header>
20
44
 
21
45
  <img src="333.jpg" class="img-fluid">
22
46
 
23
47
  <div>
48
+
49
+
50
+
51
+ </body>
52
+
53
+ </html>
24
54
 
25
55
  ```
26
56