Hallo Christian!
--- Schnipp ---
<HTML>
<BODY><div style="position:absolute; left:25px; top:100px;">
»» <A href="frame3.htm" target="frame2" style="color:Red">
link1
»» </A>
</div>
Lösung: alles auslagern und mit Klassen arbeiten:
<style type="text/css">
#link1 {
position:absolute;
left:25px;
top:100px;
}
a.red {
color:red;
}
</style>
<div id="link1">
<A href="frame3.htm" target="frame2" class="red">link1</A>
</div>
Grüße
Thomas