質問編集履歴
2
追加情報を記述
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
|
1
|
+
bx-sliderでの不自然な空白を消したい
|
body
CHANGED
File without changes
|
1
追加情報を記述
title
CHANGED
File without changes
|
body
CHANGED
@@ -58,4 +58,39 @@
|
|
58
58
|
</li>
|
59
59
|
</ul>
|
60
60
|
コード
|
61
|
+
```
|
62
|
+
```
|
63
|
+
検証ツールで確認したコード
|
64
|
+
<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;">
|
65
|
+
<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;">
|
66
|
+
<img src="image/メインビジュアル1.jpeg" alt="メインビジュアル1" data_liveedit_tagid="0x00007fc1a6f20d00">
|
67
|
+
</li>
|
68
|
+
<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;">
|
69
|
+
<img src="image/メインビジュアル2.jpeg" alt="メインビジュアル2" data_liveedit_tagid="0x00007fc1a6f212d0">
|
70
|
+
</li>
|
71
|
+
<li class="hero-image3" data_liveedit_tagid="0x00007fc1a6f21640" aria-hidden="false" style="float: none; list-style: none; position: absolute; width: 1197px; z-index: 50;">
|
72
|
+
<img src="image/メインビジュアル3.jpg" alt="メインビジュアル3" data_liveedit_tagid="0x00007fc1a6f218a0">
|
73
|
+
</li>
|
74
|
+
</ul></div></div>
|
75
|
+
コード
|
76
|
+
```
|
77
|
+
```
|
78
|
+
検証ツールで確認したコード
|
79
|
+
|
80
|
+
.bx-wrapper {
|
81
|
+
-moz-box-shadow: 0 0 5px #ccc;
|
82
|
+
-webkit-box-shadow: 0 0 5px #ccc;
|
83
|
+
box-shadow: 0 0 5px #ccc;
|
84
|
+
border: 5px solid #fff;
|
85
|
+
background: #fff;
|
86
|
+
}
|
87
|
+
.bx-wrapper {
|
88
|
+
position: relative;
|
89
|
+
margin-bottom: 60px;
|
90
|
+
padding: 0;
|
91
|
+
*zoom: 1;
|
92
|
+
-ms-touch-action: pan-y;
|
93
|
+
touch-action: pan-y;
|
94
|
+
}
|
95
|
+
コード
|
61
96
|
```
|