メインのdivブロックがあり、その間に矢印ボタンが<<
あります。重複している他の非表示の div 要素があるため、>>
このメイン div が必要です。position:absolute
私が抱えている問題>>
は、メイン div の右側に配置したい矢印ボタンにあります。
これは私のJS BINです。
.pg-wrapper div {
background-color: lightgrey;
position:absolute;
}
.left {
display:inline-block
}
.pg-wrapper {
position: relative;
width: 180px;
height: 20px;
display:inline-block;
overflow: hidden;
vertical-align: middle;
}
.right {
display: inline-block;
}
pg-wrapper css クラスで高さと幅を設定します
like this
.pg-wrapper {
float:left;
height:27px;
width:188px;}
I floated to the arrow to the right, and set a parent around the div. it seems to have done what you wanted ( this time ).
.right {
position:relative;
display: block;
float:right;
}
.wrapper { width:265px; }
Like this
css
ul {
list-style-type: none;
}
.nav-step li {
float: left;
background-color: lightgrey;
color: white;
padding: 5px 20px;
border: 1px solid grey;
position: relative;
margin: 10px;
}
.nav-step li:after {
content: '';
width: 100%;
height: 2px;
background: grey;
position: absolute;
left: -50%;
top: 14px;
z-index: -1
}
.nav-step li:first-child:after {
content: none;
}
.nav-step .active {
background-color: white;
color: grey;
}
.pg-wrapper div {
background-color: lightgrey;
position:absolute;
}
.left {
display:inline-block;
margin:0 -3px;
padding:0;
}
.pg-wrapper {
position: relative;
width: 180px;
height: 20px;
display:inline-block;
overflow: hidden;
vertical-align: middle;
}
.right {
display: inline-block;
margin:0 -4px;
padding:0;
}