Jump to content


CSS menu with Table Tutorial


1 reply to this topic

#1 _pErVeZ_

    Young Padawan

  • Members
  • Pip
  • 4 posts

Posted 22 September 2008 - 04:59 PM

Can anyone tell me how to create
CSS menu With using table

i seen lots of times , Css menu created by DIV tag.
But i want to learn Css menu with table .

Can anyone post my problem solve or reference.

Thank you


#2 Jacorre

    P2L Jedi

  • Members
  • PipPipPip
  • 824 posts
  • Gender:Male
  • Location:USA
  • Interests:Computers, Technology, Internet, Graphic/Web Design, Music, Soccer

Posted 25 September 2008 - 11:15 AM

You could use the following:

<table class="navigation">
<tr>
  <td><a href="#">Link 1</a></td>
  <td><a href="#">Link 2</a></td>
  <td><a href="#">Link 3</a></td>
</tr>
</table>

The above would create a horizontal table with 3 links in it. Note the class="navigation" within the table tag. You can then style the links using CSS:

.navigation {
	 css styles here...
}






1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users