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
CSS menu with Table Tutorial
Started by _pErVeZ_, Sep 22 2008 04:59 PM
1 reply to this topic
#1
Posted 22 September 2008 - 04:59 PM
#2
Posted 25 September 2008 - 11:15 AM
You could use the following:
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:
<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
