Hallo,
ich möcht dass sich der text "link" in einem link um ein zentimeter oder so nach rechts verschiebt so:
normal: -->Link
mouseover oder hover:--> Link
Alles soll im link sein also auch des --> ???
wie kann ich des machen
Der Ansatz war doch gut. Du musst halt selbst ein wenig basteln. So könnte es gehen:
<html>
<head>
<title></title>
<style type="text/css">
<!--
a.flipl {text-decoration:none; color:black;}
a.flipl:hover {text-decoration:none; color:blue;}
a.flipl:hover span.flipsp {padding-left:1cm;}
-->
</style>
</head>
<body>
<a href="#" class="flipl"><span>--></span><span class="flipsp">Fliplink1</span></a><br>
<a href="#" class="flipl"><span>--></span><span class="flipsp">Fliplink1 etwas länger</span></a><br>
<a href="#" class="flipl"><span>--></span><span class="flipsp">Fllnk1</span></a>
</body>
</html>
Gruß
Axel