Link to home
Start Free TrialLog in
Avatar of adnan_from_hiit
adnan_from_hiit

asked on

TABLE LAYOUT

I need a table layout like such


                                                           CELERON 1
                                    CELERON          CELERON 2
                                                           CELERON 3
           PROCESSOR      -------------      --------------
                                                            INTEL 1
                                     INTEL               INTEL 2
                                                            INTEL 3

What code shall be used?

Avatar of Diablo84
Diablo84

Something like this prehaps

<table width="50%" border="0">
 <tr>
  <td rowspan="2">PROCESSOR</td>
  <td>CELERON</td>
  <td>
  CELERON 1<br>
  CELERON 2<br>
  CELERON 3
  </td>
 </tr>
 <tr>
  <td>INTEL</td>
  <td>
  INTEL 1<br>
  INTEL 2<br>
  INTEL 3
  </td>
 </tr>
</table>
Avatar of adnan_from_hiit

ASKER

I dun need to work using <br> tags. If I was supposed to perform the task so easily, then I shouldn't have posted the question here n waste my points.

All I need is to perform such task using rowspan values which I can't insert at a proper place


If u do know some solution regarding that I'll be obliged to u.
ASKER CERTIFIED SOLUTION
Avatar of Diablo84
Diablo84

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanx Diablo84, u did it at last