function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SA.ax1574SA.ax1574 

How to add pageblocks into side by side in one visuvalforce page.

I have 3 differebt pageblocks . I need to show these pageblocks into side by side in one visuvalforce page..

Any body help me ASAP.

logontokartiklogontokartik

Try using divs..

 

something like 

 

 <div style="float:left; width: 300px; margin-right: 5px;">
    pageblock1
  </div>
   <div style="float:left; width: 300px;">
    pageblock2
  </div>
 <div style="float:left; width: 300px;">
    pageblock3
  </div>
 

 you can also try using % on the width.  

 

 

SA.ax1574SA.ax1574

Thank you so much.