ZodiacXP
Erfahrenes Mitglied
Moin Maik und auch alle anderen
Es sollen alle Links einen NO-Pfeil erhalten die nicht nur aus einem img bestehen:
Kann auch <span>Mister Wong</span> sein. Egal. Ich find kein Weg das mit first child oder sonstwas zu lösen.
Es sollen alle Links einen NO-Pfeil erhalten die nicht nur aus einem img bestehen:
HTML:
<style type="text/css">
a[href^="http://"]::before, a[href^="https://"]::before {
content : "\2197\00A0";
}
</style>
<!-- Dieser Link ohne Pfeil davor -->
<a href="http://del.icio.us/post?url={Url}">
<img src="http://l.yimg.com/hr/10316/img/delicious16.gif" />
</a>
<!-- Dieser Link mit weil er nicht nur aus Bild besteht -->
<a href="http://www.mister-wong.de/index.php?action=addurl&bm_url={Url}">
Mister Wong
<img src="http://www.mister-wong.de/img/buttons/logo16_blue.gif" />
</a>
Kann auch <span>Mister Wong</span> sein. Egal. Ich find kein Weg das mit first child oder sonstwas zu lösen.