0

I did a VF page, to show a message. how can I resize it to fit full component? thank you! enter image description here

this is the code I have.

enter image description here

Lidiia
  • 3
  • 3

1 Answers1

0

Use this code, if you mean if you want to apply the style to the whole page:

<apex:page >
    <body style="background:red;height:100%;width:100%">
            <div >
                <b> Test</b>
             </div>
</body>
</apex:page>
user40322
  • 389
  • 1
  • 6
  • thank you Clairvoyant, but I still get the scrollbar(( and borders((( I am looking for a way to fill whole "component" with the message – Lidiia Jun 21 '20 at 16:03