Results 1 to 2 of 2

Thread: Table question

  1. #1
    Join Date
    Sep 2006
    Posts
    53
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Table question

    Code:
    <table border="5" width="100%" cellspacing="0" cellpadding="0" height="120" id="table1" bordercolor="#FF0000">
    	<tr>
    		<td>&nbsp;</td>
    	</tr>
    </table>
    I use the above code to create a table, it work good in IE but in FF isn't. How can I make it compatible with both browser ???

    Thanks

  2. #2
    Join Date
    Dec 2006
    Location
    Twin Cities, MN
    Posts
    35
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I assume you're talking about the border style, not being a solid color. I'm sure there's an HTML attribute, but I can't think of it, so I'll give you the css solution.

    <table border="5" width="100%" cellspacing="0" cellpadding="0" height="120" id="table1" bordercolor="#FF0000" style="border-style:solid;">

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •