Web Analytics Made Easy -
StatCounter designing for different resolutions - CodingForum

Announcement

Collapse
No announcement yet.

designing for different resolutions

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • designing for different resolutions

    I have been messing around with some temporary designs to learn html and web design - only i have problems with resolution compaterbility.
    Ive read that creating a table with the sizes pre set so the code automatically lines up on the left.
    I was wondering does any one know of any html code that auto resizes the text and images on the page to allow the site to be universal in respect to screen resolution?
    cheers

  • #2
    Instead of using pivel values, try using percentages.

    Code:
    <table width="100%">
      <tr>
        <td width="25%">Stuff</td>
        <td width="25%">More Stuff</td>
        <td width="50%">Even More Stuff, taking up half of the browser's width.</td>
      </tr>
    </table>
    designsbychris.com

    Comment


    • #3
      If you use percentages for all measurements, and em or percentages for all font-sizes, generally you can expect excellent rendering across numerous resolutions.
      jasonkarldavis.com

      Comment

      Working...
      X