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
David ZhuDavid Zhu 

How to center apex:outputpanel in a cell?

I have difficulty to center outputpanel component in a cell. It keeps left alighed. Please advise.
<tr>
        <td id = "tcen" colspan="3">
            
            <apex:outputPanel layout="block"  id ="p1">
                <apex:datatable value="{!ZeroSaleProducts}" var="sales" columns="1" rendered="{!(DateSelectionError = false)}">
                <apex:column >
                    <hr/><apex:outputtext value="{!sales.name}" styleClass="productTextStyle"/>
                </apex:column>
                </apex:datatable>
            </apex:outputPanel>
            
        </td>
    </tr>