I have searched this forum a lot on this subject. In fact, I am still searching. However, time is a big factor at the moment and I simply need an answer.
I figured CSS is the only way to do this, but to let you know everything, this intended for use in an asp .net 2.0 C# web site. This would be used on the master page. The site does make use of skins, css, and themes. That might or might not make a difference.
I, like everyone else and their brother, am trying to create a table with rounded corners. The difference in what I am trying seems to be that I have not seen any articles or posts that address doing this inside a table and for multiple tables of varying lengths. For examples, I want a Header and Footer table with rounded corners that will extend the full width of the page. However, I also want another table for my site navigation with rounded corners. Finally, I need another table with rounded corners for my content. Here is the table structure:
<table>
<tr><Td style="width: 100%;" > HEADER TABLE ROW </TD></TR>
</table>
<br />
<table>
<tr><Td style="width: 10%;"> site navigation </TD></TR>
</table>
<table>
<tr><Td style="width: 90%;"> ASP CONTENT PLACE HOLDER </TD></TR>
</table>
<table>
<tr><Td style="width: 100%;"> PAGE FOOTER </TD></TR>
</table>
I know that looks odd, but I'm pretty sure thats what I want. The site would have 4 tables on every page that would have rounded corners. I might encompass the 4 tables above in a master table, but I will leave that for you experts to advise on.
The solutions needs to work in I.E. 6.0. Firefox is optional, but would be nice.
Thanks in advance.
Start Free Trial