下のコードで見ることができますが、リストを作成するためにliを作成する代わりに、htmlタグでオプションを選択します。私は外見上望ましくないものを得ます。代わりにliを使用してください
- liの幅をボトム幅と同じようにする方法。私はCSSの幅の値を追加しました。値100%はliを底部よりも広くする。
- どのようにして、右の位置に浮動小数点数のキャレットと数字を入れますか?あなたは、私が正しい位置にそれを作るために、クラスのプルRIGTを追加することができますが、それは左の位置にテキストよりもキャレットが高い作る(私は同じ中央の垂直位置にそれらを作るたい)
.instead-option {
\t \t z-index:999;
\t \t position: absolute;
\t \t margin: 0;
\t \t max-height:300px;
\t \t background: #ffffff;
\t \t border-radius:4px;
\t \t border:1px solid #dddddd;
\t \t width:100%;
\t \t overflow:auto;
\t }
\t .instead-option > li {
\t \t width:100%;
\t \t background: #eee;
\t \t line-height: 25px;
\t \t font-size: 14px;
\t \t padding: 0 10px;
\t \t cursor: pointer;
\t }
\t .instead-option > li > a{
\t \t display: flex;
\t \t width: 100%;
\t }
\t .instead-option > li:nth-child(odd) {
\t \t background-color: #ffffff;
\t }
\t .instead-option > li:nth-child(even) {
\t \t background-color: #e5e5e5;
\t }
\t .instead-option > li:hover {
\t \t background: #aaa;
\t }
\t .instead-option > li > a{
\t \t color:#232323;
\t \t text-decoration:none;
\t }
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<div class="container">
\t <div class="row">
\t \t <div class="col-sm-12">
\t \t \t <button type="button" class="form-control text-left nominal">Pilih nominal<span class="caret caret-right"></span></button>
\t \t \t <ul class="instead-option list-unstyled">
\t \t \t \t <li><a href="#">English <span class="text-primary pull-right">10000</span></a></li>
\t \t \t \t <li><a href="#">Deutsch <span class="text-primary pull-right">50000</span></a></li>
\t \t \t </ul>
\t \t </div>
\t </div>
</div>
@ digilac3ありがとう...あなたは私の日を救う。すべての答えが私の問題を解決することができます。しかし、数字(10000と50000)でどのように。私はキャレットのような番号の位置が欲しい。右にある –
@Dedi @ display:flex;を 'display:block;'と置き換えてください。.instead-option> li> a ' – digitalac3
@ digilac3ありがとうございました。あなたの善が神から最高の報酬を得ることができるように –