Results 1 to 2 of 2
  1. #1
    Rimu Atkinson
    Guest
    Hi all

    I have developed a web site that is intended to be viewed on mobile
    phones. I have a Nokia N70 for testing purposes.

    I have experimented with the simplest of HTML tables, for example

    <table>
    <tr>
    <td> test </td>
    <td> test2 </td>
    <tr>
    </table>

    and that is fine. i see

    test test2


    BUT when i use

    <table>
    <tr>
    <td> test </td>
    <td> test2 </td>
    <td> test3 </td>
    <tr>
    </table>

    the table doesn't work at all, and i simply get

    test
    test2
    test3

    Has anyone else noticed this? I am using the default web browser, not
    opera (which also came with the phone).

    Thanks

    Rimu



    See More: viewing HTML tables on nokia web browser?




  2. #2
    Rimu Atkinson
    Guest

    Re: viewing HTML tables on nokia web browser?

    if anyone cares, the solution was to put this at the top of my page

    <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN"
    "http://www.wapforum.org/DTD/xhtml-mobile10.dtd" >
    <html xmlns="http://www.w3.org/1999/xhtml">

    instead of just <html>



  • Similar Threads