HTML interesse |
|
Bedankt doch ben ik nog niet helemaal mee
Ik heb dit als html code
<table width="100%" border="0">
<tr><ul>
<td width="13%"><li class="huis1"><a href="1.html" class="bluecap_link">1</a></li></td>
<td width="18%"><li class="huis1"><a href="2.html" class="bluecap_link">2</a></li></td>
<td width="26%"><li class="huis1"><a href="3.html" class="bluecap_link">3</a></li></td>
<td width="23%"><li class="huis1"><a href="4.html" class="bluecap_link">4</a></li></td>
<td width="20%"><li class="huis1"><a href="5.html" class="bluecap_link">5</a></li></td>
</ul></tr><tr>
<td colspan="5"><hr width="100%" size="1" color="#D6D6D6" noshade></td>
</tr>
</table>
<table width="100%" border="0"> <tr><ul> <td width="13%"><li class="huis1"><a href="1.html" class="bluecap_link">1</a></li></td> <td width="18%"><li class="huis1"><a href="2.html" class="bluecap_link">2</a></li></td> <td width="26%"><li class="huis1"><a href="3.html" class="bluecap_link">3</a></li></td> <td width="23%"><li class="huis1"><a href="4.html" class="bluecap_link">4</a></li></td> <td width="20%"><li class="huis1"><a href="5.html" class="bluecap_link">5</a></li></td> </ul></tr><tr> <td colspan="5"><hr width="100%" size="1" color="#D6D6D6" noshade></td> </tr> </table>
Dit is de css
ul{list-style-type:none}
li.huis1 {list-style: url("/images/bullet-arrow.gif"); float:left;}
li.huis2 {list-style: url("/images/bullet-arrow.gif"); float:left;}
li.huis3 {list-style: url("/images/bullet-arrow.gif"); float:left;}
a.bluecap_link:link {font-size: 11px; font-weight: bold; text-transform: uppercase; color: #0786D2; text-decoration: none;}
a.bluecap_link:visited {font-size: 11px;font-weight: bold; text-transform: uppercase; color: #0786D2; text-decoration: none;}
a.bluecap_link:hover {font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #0786D2; text-decoration: underline;}
ul{list-style-type:none} li.huis1 {list-style: url("/images/bullet-arrow.gif"); float:left;} li.huis2 {list-style: url("/images/bullet-arrow.gif"); float:left;} li.huis3 {list-style: url("/images/bullet-arrow.gif"); float:left;} a .bluecap_link :link {font -size : 11px ; font -weight : bold ; text -transform : uppercase ; color : #0786D2; text-decoration: none;}a.bluecap_link:visited {font-size: 11px;font-weight: bold; text-transform: uppercase; color: #0786D2; text-decoration: none;} a.bluecap_link:hover {font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #0786D2; text-decoration: underline;}
Mijn bedoeling is dat zowel de images als de stijl van de bluecap opgenomen worden in de li !
Hoe moet het dan met link, visited, hover ?
Alvast bedankt voor de hulp. |