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
buggs sfdcbuggs sfdc 

Display outputtext & input text values & button in center of the page

HI

is there any tags to display the outputtext & input text values in the center of the page,i tried &nbsp, to get those values to the center of the page,but its not happening,please help me out to resolve this issue,even i need to display the button exactly below those values and in center of the page.

Thanks in Advance!
 
<apex:page >
    <style>
    <apex:outputText id="myId" />
    .alignfontright {
    text-align:right;
    }
    </style>  
<apex:form >

<apex:pageBlock title="HERE YOU GO">
<apex:panelGrid width="350px">
 <apex:pageBlockSection >


 <apex:outputText value="quotation Name" style="font-weight:800" />
<apex:inputText /> 
         <apex:outputText value="BNP Name" style="font-weight:800"/>
         <apex:inputText />
         <apex:outputText value="info"/>
         <apex:inputCheckbox />
         <apex:outputText value="ESI"/>
         <apex:inputCheckbox />
         <apex:outputText value="Quote"/>
         <apex:inputCheckbox />
         
&nbsp;<apex:commandButton value="check" style="font-weight:800"/>

     </apex:pageBlockSection>
</apex:panelGrid>
</apex:pageBlock>
</apex:form>
</apex:page>