Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

HTML Layout Tables side by side - Apex 4

787641Aug 6 2010 — edited Aug 6 2010
Hi.

I have created an HTML region (Parent)
Inside the parent region, I have 3 HTML sub regions (Children)
All I want is to display them side by side.

When looking at the html source in IE after page loads, it looks like this:
<table>
 <tr>
  <th>Parent</th>
  <td>&nbsp;&nbsp;&nbsp;</td>
 </tr>
 <tr>
 <td>

****************  
   <table>
    <tr>
     <th>Child 1</th>
     <td>&nbsp;</td>
    </tr>
    <tr>
     <td></td>
    </tr>
   </table>

   <table>
    <tr>
     <th>Child 2</th>
     <td>&nbsp;</td>
    </tr>
    <tr>
     <td></td>
    </tr>
   </table>

   <table>
    <tr>
     <th>Child 3</th>
     <td>&nbsp;</td>
    </tr>
    <tr>
     <td></td>
    </tr>
   </table>

****************
 </td>
 </tr>
</table>
There where you see the bunch of ************, I would like to put div tags. I already have css which can place these table next to each. If only I could get a div tag around all three children, then I have a solution. Is there another easier way? Remember the Parent is an HTML regions.

Thanks
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 3 2010
Added on Aug 6 2010
4 comments
2,299 views