回答編集履歴

1

参考

2018/11/15 06:56

投稿

yambejp
yambejp

スコア114833

test CHANGED
@@ -1 +1,55 @@
1
1
  .cのposition: absoluteがいらないのでは?
2
+
3
+ 参考までに
4
+
5
+ ```CSS
6
+
7
+ <style>
8
+
9
+ .A {
10
+
11
+ float: left;
12
+
13
+ background-Color:yellow;
14
+
15
+ }
16
+
17
+
18
+
19
+ .B {
20
+
21
+ width: 900px;
22
+
23
+ height: 700px;
24
+
25
+ float: right;
26
+
27
+ background-Color:lime;
28
+
29
+ }
30
+
31
+
32
+
33
+ .C {
34
+
35
+ width: 900px;
36
+
37
+ height: 700px;
38
+
39
+ float: right;
40
+
41
+ margin-top: 300px;
42
+
43
+ background-Color:aqua;
44
+
45
+ }
46
+
47
+ </style>
48
+
49
+ <div class="A">A</div>
50
+
51
+ <div class="B">B</div>
52
+
53
+ <div class="C">C</div>
54
+
55
+ ```