Categories
Application Express Oracle

Centre A Region in Oracle Application Express

Do you want to centre a region at a certain width in Oracle Application Express?

  1. Give your region a static ID to reference, in this case I am using “centreCol”.
  2. Then add the following to your page’s inline CSS. You can also add it as a stylesheet to your entire application if you want to re-use it.
div#centreCol{
    margin:0 auto;
    width: 50%;
}

Leave a Reply

Your email address will not be published. Required fields are marked *