回答編集履歴

1

追加の回答

2017/04/11 01:09

投稿

07JP27
07JP27

スコア191

test CHANGED
@@ -61,3 +61,77 @@
61
61
  </div> <!-- container -->
62
62
 
63
63
  ```
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+ ---
74
+
75
+ **2017/04/11追記**
76
+
77
+ この方法が推奨されている方法なのかわかりませんが、このコードでお望みの通りに動きました
78
+
79
+
80
+
81
+ ```HTML
82
+
83
+ <div class="container-flud">
84
+
85
+ <div class="row">
86
+
87
+ <div class="col-xs-12 col-sm-6" style="height:300px; padding-right:0;">
88
+
89
+ <div class="embed-responsive embed-responsive-4by3" style="padding-bottom:300px; width:100%; background-color: #F56B6B;">
90
+
91
+ 1
92
+
93
+ </div>
94
+
95
+ </div>
96
+
97
+ <div class="col-xs-12 col-sm-6" style="height:300px; padding:0;">
98
+
99
+ <div class="embed-responsive embed-responsive-4by3" style="padding-bottom:150px; width:100%; background-color: #6B75F5;">
100
+
101
+ 2
102
+
103
+ </div>
104
+
105
+ <div class="embed-responsive embed-responsive-4by3" style="padding-bottom:150px; height:150px; width:100%; background-color: #B96BF5;">
106
+
107
+ 3
108
+
109
+ </div>
110
+
111
+ </div>
112
+
113
+ <div class="col-xs-12 col-sm-6" style="height:150px; padding-right:0;">
114
+
115
+ <div class="embed-responsive embed-responsive-4by3" style="padding-bottom:150px; height:150px; width:100%; background-color: #FFEB41;">
116
+
117
+ 4
118
+
119
+ </div>
120
+
121
+ </div>
122
+
123
+ <div class="col-xs-12 col-sm-6" style="height:150px; padding:0;">
124
+
125
+ <div class="embed-responsive embed-responsive-4by3" style="padding-bottom:150px; height:150px; width:100%; background-color: #B3FF59;">
126
+
127
+ 5
128
+
129
+ </div>
130
+
131
+ </div>
132
+
133
+ </div> <!-- row -->
134
+
135
+ </div> <!-- container -->
136
+
137
+ ```