質問編集履歴
2
追加情報を記述
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
bx-sliderでの不自然な空白を消したい
|
test
CHANGED
File without changes
|
1
追加情報を記述
test
CHANGED
File without changes
|
test
CHANGED
@@ -119,3 +119,73 @@
|
|
119
119
|
コード
|
120
120
|
|
121
121
|
```
|
122
|
+
|
123
|
+
```
|
124
|
+
|
125
|
+
検証ツールで確認したコード
|
126
|
+
|
127
|
+
<div class="bx-wrapper" style="max-width: 100%;"><div class="bx-viewport" aria-live="polite" style="width: 100%; overflow: hidden; position: relative; height: 357px;"><ul class="bxslider" data_liveedit_tagid="0x00007fc1a6f20840" style="width: auto; position: relative;">
|
128
|
+
|
129
|
+
<li class="hero-image1" data_liveedit_tagid="0x00007fc1a6f20aa0" aria-hidden="true" style="float: none; list-style: none; position: absolute; width: 1197px; z-index: 0; display: none;">
|
130
|
+
|
131
|
+
<img src="image/メインビジュアル1.jpeg" alt="メインビジュアル1" data_liveedit_tagid="0x00007fc1a6f20d00">
|
132
|
+
|
133
|
+
</li>
|
134
|
+
|
135
|
+
<li class="hero-image2" data_liveedit_tagid="0x00007fc1a6f21070" aria-hidden="true" style="float: none; list-style: none; position: absolute; width: 1197px; z-index: 0; display: none;">
|
136
|
+
|
137
|
+
<img src="image/メインビジュアル2.jpeg" alt="メインビジュアル2" data_liveedit_tagid="0x00007fc1a6f212d0">
|
138
|
+
|
139
|
+
</li>
|
140
|
+
|
141
|
+
<li class="hero-image3" data_liveedit_tagid="0x00007fc1a6f21640" aria-hidden="false" style="float: none; list-style: none; position: absolute; width: 1197px; z-index: 50;">
|
142
|
+
|
143
|
+
<img src="image/メインビジュアル3.jpg" alt="メインビジュアル3" data_liveedit_tagid="0x00007fc1a6f218a0">
|
144
|
+
|
145
|
+
</li>
|
146
|
+
|
147
|
+
</ul></div></div>
|
148
|
+
|
149
|
+
コード
|
150
|
+
|
151
|
+
```
|
152
|
+
|
153
|
+
```
|
154
|
+
|
155
|
+
検証ツールで確認したコード
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
.bx-wrapper {
|
160
|
+
|
161
|
+
-moz-box-shadow: 0 0 5px #ccc;
|
162
|
+
|
163
|
+
-webkit-box-shadow: 0 0 5px #ccc;
|
164
|
+
|
165
|
+
box-shadow: 0 0 5px #ccc;
|
166
|
+
|
167
|
+
border: 5px solid #fff;
|
168
|
+
|
169
|
+
background: #fff;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
.bx-wrapper {
|
174
|
+
|
175
|
+
position: relative;
|
176
|
+
|
177
|
+
margin-bottom: 60px;
|
178
|
+
|
179
|
+
padding: 0;
|
180
|
+
|
181
|
+
*zoom: 1;
|
182
|
+
|
183
|
+
-ms-touch-action: pan-y;
|
184
|
+
|
185
|
+
touch-action: pan-y;
|
186
|
+
|
187
|
+
}
|
188
|
+
|
189
|
+
コード
|
190
|
+
|
191
|
+
```
|