質問編集履歴

1

コード編集

2020/11/02 02:01

投稿

shirout
shirout

スコア36

test CHANGED
File without changes
test CHANGED
@@ -22,15 +22,15 @@
22
22
 
23
23
  </head>
24
24
 
25
- <body>
25
+ <body class = "body-tag">
26
26
 
27
- <script src="https:/vue.js">
27
+ <script src="https://vue.js"></script>
28
-
29
- </script>
30
28
 
31
29
  <div id = "app">
32
30
 
33
- <div class = "all"></div>
31
+ <div class = "all">
32
+
33
+ <div class = "head">
34
34
 
35
35
  </div>
36
36
 
@@ -44,9 +44,9 @@
44
44
 
45
45
  ```css
46
46
 
47
- html,
47
+ ,html
48
48
 
49
- .all {
49
+ .body-tag {
50
50
 
51
51
  height: 100%;
52
52
 
@@ -54,4 +54,20 @@
54
54
 
55
55
  }
56
56
 
57
+ .app {
58
+
59
+ height: 100%;
60
+
61
+ width: 100%;
62
+
63
+ }
64
+
65
+ .head {
66
+
67
+ height: 20%;
68
+
69
+ width: 100%;
70
+
71
+ }
72
+
57
73
  ```