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
Paul McMurrughPaul McMurrugh 

Side by Side Table and Static Resource in Visualforce

Hi,

I have a Visualforce page containing a table (left) and a Static Resource (right). I want these to appear side by side on the page, so that the Static Resource fits into the gap to the right of the table. How can I achieve this?

Cheers.

User-added image
Best Answer chosen by Paul McMurrugh
bob_buzzardbob_buzzard
It sounds like you want to float the table left and then let the static resource appear in the normal flow. There's full details on CSS floating at:

https://developer.mozilla.org/en-US/docs/Web/CSS/float

All Answers

bob_buzzardbob_buzzard
It sounds like you want to float the table left and then let the static resource appear in the normal flow. There's full details on CSS floating at:

https://developer.mozilla.org/en-US/docs/Web/CSS/float
This was selected as the best answer
Paul McMurrughPaul McMurrugh
Thanks Bob, this is just what I needed to do.