Jump to content

Search the Community

Showing results for tags 'table alignment'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 1 result

  1. I am having trouble aligning my tables in the exact center of the page; the tables are off center to the left. Another question is the tables do appear in both Chrome and IE, but in Firefox they do not appear at all any idea why? All browsers are up to date. Here is what I have set up now: <html> <head> <title>Modoc County</title> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <style> body { background-image: url("file:///D:/web site/tan2.jpg"); background-repeat: repeat; background-attachment: fixed; } table { margin-left: auto; margin-right: auto; } </style> </head> <body> <br/> <br/> <br/> <br/> <table align="center" cellspacing="20" width="50%" class="centerTable"> <tr> <td><img src="D:/web site/history/captainjack2.jpg" alt="Captain Jack" style="width:204px;height:228px;"></td> <td><img src="D:/web site/history.png"></td> <td><img src="D:/web site/auto.png"></td> </tr> <tr> <td><img src="D:/web site/fish.png"></td> <td><img src="D:/web site/briton.jpg" alt="Lake Briton" style="width:304px;height:228px;"></td> <td><img src="D:/web site/hunt.png"></td> </tr> <tr> <td><img src="D:/web site/hike.png"></td> <td><img src="D:/web site/camp.png"></td> </tr> </table> <table align="center" cellspacing="20" width="50%" class="centerTable"> <tr> <td><img src="D:/web site/bike.png"></td> <td><img src="D:/web site/geo.png"></td> <td><img src="D:/web site/photos/lava flow.jpg" alt="Lava Flow" style="width:304px;height:228px;"></td> </tr> <tr> <td><img src="D:/web site/water.png"></td> <td><img src="D:/web site/wildlife/fauna/raccoon.jpg" alt="Raccoon" style="width:304px;height:228px;"></td> <td><img src="D:/web site/wild.png"></td> </tr> <tr> <td><img src="D:/web site/flora.png"></td> </tr> </table> </body> </html>
×
×
  • Create New...