CSS Vererbung verhindern
lima-city → Forum → Die eigene Homepage → HTML, CSS & Javascript
-
Hallo
Ich arbeite gerade an einem Design bei dem scih alle Links so wie ein Menü Link verhalten wie kann ich das verhindern.
Hier ist der Code des Designs.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"> <head> <title>Titel</title> <meta http-equiv="content-type" content="text/html; charset=us-ascii" /> <meta name="description" content="" /> <meta name="author" content="" /> <meta name="keywords" content="" /> <style type="text/css"> /*<![CDATA[*/ body { background-color: #808080; } body.c-1 {color: #FFFFFF;} #menu { background: url(images/menubg.png) repeat; height: 20px; } #menu a:link,a:active,a:visited { background: url(images/menu.gif) repeat; display: block; height: 20px; } #footer { font-size: xx-small; text-align: center; } #footer a:Link,a:Visited,a:Active { color: #FFFFFF; } #footer a:hover,a:focus { text-decoration: none; } /*]]>*/ </style> </head> <body class="c-1"> <table border="0" width="900px" bgcolor="#000000" align="center" summary=""> <tr> <td colspan="2"><img src="images/header.png" border="0" alt="" /></td> </tr> <tr> <td bgcolor="#FFFFFF" colspan="2"></td> </tr> <tr align="center" id="menu"> <td> <table border="0" width="900px" summary=""> <tr> <td width="100px"><a href="?1">1</a></td> <td width="100px"><a href="?1">1</a></td> <td width="100px"><a href="?1">1</a></td> <td></td> </tr> </table> </td> </tr> <tr> <td bgcolor="#FFFFFF" colspan="2"></td> </tr> <tr> <td colspan="2">Main</td> </tr> <tr> <td colspan="2" id="footer">Design by <a href="http://www.phill93.net.tf">Phill93</a></td> </tr> </table> </body> </html>
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Mit
#menu a:link,a:active,a:visited
Sagst du aus, dass #menu a und alle a:active und alle a:visited selektiert werden sollen. Richtig müsste es heißen:
#menu a:link, #menu a:active, #menu a:visited
Das gleiche bei #footer. -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage