Ssoffan76Medlem sedan maj 2001684 inlägg Frågan#1 Varför fungerar inte detta? Hur ska man skriva? Länken "Sida" påverkas inte alls...
------------CSS-----------
body
{
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style: normal;
color: #999999;}
A:LINK {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style : normal;
font-weight:bold ;
color : #999999;
text-decoration: none;
}
A:VISITED {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style : normal;
font-weight:bold ;
color : #999999;
text-decoration: none;
}
A:HOVER {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
color: #d24238;
text-decoration: none;
}
TD{
font-family : Arial, Helvetica, sans-serif;
font-style : normal;
font-size : 12;
color : #999999;
text-decoration: none;
}
.meny{
font-size : 10;
}
.rubrik{
font-size : 12;
}
----------------------------
---------HTML---------------
<tr><td class="meny"><a href="sida.html">Sida</A></td></tr>
SsundogMedlem sedan aug. 200189 inlägg Jo, det funkar. Du måste glömt nåt basic, kolla igenom igen...
det här funkade...
<html>
<head>
<style>
body
{
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style: normal;
color: #999999;}
A:LINK {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style : normal;
font-weight:bold ;
color : #999999;
text-decoration: none;
}
A:VISITED {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style : normal;
font-weight:bold ;
color : #999999;
text-decoration: none;
}
A:HOVER {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
color: #d24238;
text-decoration: none;
}
TD{
font-family : Arial, Helvetica, sans-serif;
font-style : normal;
font-size : 12;
color : #999999;
text-decoration: none;
}
.meny{
font-size : 10;
}
.rubrik{
font-size : 12;
}
</style>
</head>
<body>
<table>
<tr><td class="meny"><a href="sida.html">Sida</A></td></tr>
</table>
</body>
</html>