質問編集履歴

2

コードミス

2021/06/10 07:07

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -96,7 +96,7 @@
96
96
 
97
97
  </div>
98
98
 
99
-
99
+    <script>
100
100
 
101
101
  $(document).ready(function () {
102
102
 
@@ -110,7 +110,9 @@
110
110
 
111
111
  })
112
112
 
113
- })
113
+ })
114
+
115
+ </script>
114
116
 
115
117
  </body>
116
118
 

1

誤字修正

2021/06/10 07:07

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -40,15 +40,39 @@
40
40
 
41
41
  <style>
42
42
 
43
- <div class="parent">
43
+ .parent{
44
44
 
45
- <div class="c c1 resizable"></div>
45
+ width:500px;
46
46
 
47
- <div class="c c2 resizable"></div>
47
+ height:100px;
48
48
 
49
- </div>
49
+ background:gray;
50
50
 
51
+ display:flex;
51
52
 
53
+ }
54
+
55
+ .c{
56
+
57
+ height:100%;
58
+
59
+ }
60
+
61
+ .c1{
62
+
63
+ width:75%;
64
+
65
+ background:red;
66
+
67
+ }
68
+
69
+ .c2{
70
+
71
+ width:25%;
72
+
73
+ background:blue;
74
+
75
+ }
52
76
 
53
77
  </style>
54
78