Pseudoelement nach Nichterscheinen? [Duplikat]
Diese Frage hat hier bereits eine Antwort:
Warum benötigen die: vor und: nach Pseudoelementen eine 'content'-Eigenschaft? 4 AntwortenIch möchte am Ende einiger Formularfelder ein Hilfelogo einfügen, das eine QuickInfo öffnet.
Alles funktioniert, aber das .helptip-Symbol (http://img1.wsimg.com/shared/img/1/small-help-icon.gif) kommt links (zusammengeführt) mit dem Text. Eigentlich möchte ich rechts vom Span-Text stehen, also habe ich .help-tip: after gemacht. Aber dann zeigt sich überhaupt nichts.
Kannst du erkennen, was los ist?
<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;
}