27

ツールチップを開くいくつかのフォーム フィールドの最後にヘルプ ロゴを追加したいと考えています。

すべてが機能していますが、.helptip アイコン ( http://img1.wsimg.com/shared/img/1/small-help-icon.gif ) がテキストと共に左側に表示されます (マージされます)。私は実際にはスパン テキストの右側に入れたいので、.help-tip:after を実行しました。しかし、その後は何も表示されません。

何が悪いのか分かりますか?

<div class="advancedSearchFormSelectField fclear">
<span id="view_format_mis" class="advancedSearchFormlabel help-tip"> Include Columns in Result Set </span>

<select class="advancedSearchFormSelectBox" id="filters_include_columns" multiple="multiple" name="filters[include_columns][]">

<option value="x">X</option>
<option value="y">Y</option>
<option value="z">Z</option>
</select>
</div>

<div class="advancedSearchFormSelectField fclear">
<span id="view_format_mis" class="advancedSearchFormlabel"> Sort Column </span>
<!--No help tip here -->    
<select class="advancedSearchFormSelectBox" id="filters_sort_columns" multiple="multiple" name="filters[sort_columns]">

<option value="a">A</option>
<option value="b">B</option>
<option value="c">C</option>
</select>
</div>
.help-tip {
/* Merged text at the moment. .help-tip:after not working */ 
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-image: url("/assets/small-help-icon.gif");
}

.advancedSearchFormSelectField{
    width:300px;
    margin: 5px;
    height: 60px;
    float:left;
}
4

1 に答える 1

60

現在、疑似要素を使用していないようです。この設定.help-tipを試してみてください.help-tip::afterと を与えcontent: ""てくださいdisplay: inline-block:

.help-tip::after {
    content: "";
    display: inline-block;
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-image: url("/assets/small-help-icon.gif");
}
于 2013-04-03T09:23:45.983 に答える