1

メインのdivブロックがあり、その間に矢印ボタンが<<あります。重複している他の非表示の div 要素があるため、>>このメイン div が必要です。position:absolute

私が抱えている問題>>は、メイン div の右側に配置したい矢印ボタンにあります。

これは私のJS BINです。

4

4 に答える 4

2

jsFiddle デモ

.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;
}
于 2013-09-07T06:17:18.087 に答える
1

pg-wrapper css クラスで高さと幅を設定します

like this
        .pg-wrapper {
                 float:left;
                 height:27px;
                 width:188px;}
于 2013-09-07T08:04:14.267 に答える
1

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 ).

http://jsbin.com/izeHiVu/2/

 .right {
     position:relative;
     display: block;
     float:right;
  }

.wrapper { width:265px; }
于 2013-09-07T06:08:26.980 に答える
0

Like this

demo

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;
}
于 2013-09-07T06:09:56.847 に答える