回答編集履歴
1
追加の回答
answer
CHANGED
@@ -29,4 +29,41 @@
|
|
29
29
|
</div>
|
30
30
|
</div> <!-- row -->
|
31
31
|
</div> <!-- container -->
|
32
|
+
```
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
---
|
38
|
+
**2017/04/11追記**
|
39
|
+
この方法が推奨されている方法なのかわかりませんが、このコードでお望みの通りに動きました
|
40
|
+
|
41
|
+
```HTML
|
42
|
+
<div class="container-flud">
|
43
|
+
<div class="row">
|
44
|
+
<div class="col-xs-12 col-sm-6" style="height:300px; padding-right:0;">
|
45
|
+
<div class="embed-responsive embed-responsive-4by3" style="padding-bottom:300px; width:100%; background-color: #F56B6B;">
|
46
|
+
1
|
47
|
+
</div>
|
48
|
+
</div>
|
49
|
+
<div class="col-xs-12 col-sm-6" style="height:300px; padding:0;">
|
50
|
+
<div class="embed-responsive embed-responsive-4by3" style="padding-bottom:150px; width:100%; background-color: #6B75F5;">
|
51
|
+
2
|
52
|
+
</div>
|
53
|
+
<div class="embed-responsive embed-responsive-4by3" style="padding-bottom:150px; height:150px; width:100%; background-color: #B96BF5;">
|
54
|
+
3
|
55
|
+
</div>
|
56
|
+
</div>
|
57
|
+
<div class="col-xs-12 col-sm-6" style="height:150px; padding-right:0;">
|
58
|
+
<div class="embed-responsive embed-responsive-4by3" style="padding-bottom:150px; height:150px; width:100%; background-color: #FFEB41;">
|
59
|
+
4
|
60
|
+
</div>
|
61
|
+
</div>
|
62
|
+
<div class="col-xs-12 col-sm-6" style="height:150px; padding:0;">
|
63
|
+
<div class="embed-responsive embed-responsive-4by3" style="padding-bottom:150px; height:150px; width:100%; background-color: #B3FF59;">
|
64
|
+
5
|
65
|
+
</div>
|
66
|
+
</div>
|
67
|
+
</div> <!-- row -->
|
68
|
+
</div> <!-- container -->
|
32
69
|
```
|