center table and text in html page - vertical and horizontal

user1361914

This should be really easy, but think dealing with brain fog.

Trying to create a page which shows text at center of the page[ vertically / horizontally]

<html>
    <head>
        <title>Application error</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>    
    </head>
    <body>
                       <table>
            <tr>

            <th style="background-color:#FFFFFF;vertical-align: central">
                 This should be center of page vertcally/horizontally
                                </th>
           </tr>
        </table>


            </body>
</html>

The text is aligned in center but right at top of the page - horizonatlly center but vertically.

[tried looking for tag called 'brain freeze' but could not. maybe the admins can make one for such a case]

frogatto

Use this settings:

table{
    position:relative;
    margin:0 auto;
    top:50%; /* assign manually */
}
body{
    height:100%;
    width:100%;
    position:absolute;
}

jsFiddle:here

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Center a circular div in the middle (vertical / horizontal) of a page

From Dev

Absolute vertical and horizontal center text in responsive div

From Dev

Vertical and horizontal scroll in Html table

From Dev

center table in page HTML

From Dev

Vertical and horizontal center

From Dev

Flexbox vertical and horizontal center

From Dev

A HTML Table,In a column, header is horizontal, rows are vertical

From Dev

How to actually center (vertical and horizontal) text inside a nested div

From Dev

Text on horizontal table line in html

From Dev

Printing text in html in the center of the page

From Dev

Center the text in a row of an HTML table

From Dev

Dividing HTML page into horizontal sections, without vertical scrollbars

From Dev

Scroll HTML table horizontal and vertical while left column is fixed

From Dev

Generating dynamic data for html table with both vertical and horizontal header

From Dev

Html table td width by vertical text?

From Dev

How to center (horizontal and vertical) text along an textPath inside an arc using d3.js?

From Dev

CSS Center text (Horizontal and Vertical) over another element inside a DIV block

From Dev

How to center (horizontal and vertical) text along an textPath inside an arc using d3.js?

From Dev

Is there any difference between "center_horizontal|center_vertical" and "center"

From Dev

Search function for vertical or horizontal text

From Dev

Vertical and Horizontal alignment of text with CSS

From Dev

Convert vertical text into horizontal in shell

From Dev

Horizontal listview with vertical text in Qml

From Java

Bootstrap 4 Center Vertical and Horizontal Alignment

From Dev

Flexbox Vertical and horizontal center with bootstrap classes

From Dev

Resize a grid with respect to horizontal center and vertical top

From Dev

R ggplot vertical and horizontal line intercept at center

From Dev

Image <a> vertical & horizontal align center and resize with % in both

From Dev

Bootstrap 5 horizontal and vertical center on form

Related Related

  1. 1

    Center a circular div in the middle (vertical / horizontal) of a page

  2. 2

    Absolute vertical and horizontal center text in responsive div

  3. 3

    Vertical and horizontal scroll in Html table

  4. 4

    center table in page HTML

  5. 5

    Vertical and horizontal center

  6. 6

    Flexbox vertical and horizontal center

  7. 7

    A HTML Table,In a column, header is horizontal, rows are vertical

  8. 8

    How to actually center (vertical and horizontal) text inside a nested div

  9. 9

    Text on horizontal table line in html

  10. 10

    Printing text in html in the center of the page

  11. 11

    Center the text in a row of an HTML table

  12. 12

    Dividing HTML page into horizontal sections, without vertical scrollbars

  13. 13

    Scroll HTML table horizontal and vertical while left column is fixed

  14. 14

    Generating dynamic data for html table with both vertical and horizontal header

  15. 15

    Html table td width by vertical text?

  16. 16

    How to center (horizontal and vertical) text along an textPath inside an arc using d3.js?

  17. 17

    CSS Center text (Horizontal and Vertical) over another element inside a DIV block

  18. 18

    How to center (horizontal and vertical) text along an textPath inside an arc using d3.js?

  19. 19

    Is there any difference between "center_horizontal|center_vertical" and "center"

  20. 20

    Search function for vertical or horizontal text

  21. 21

    Vertical and Horizontal alignment of text with CSS

  22. 22

    Convert vertical text into horizontal in shell

  23. 23

    Horizontal listview with vertical text in Qml

  24. 24

    Bootstrap 4 Center Vertical and Horizontal Alignment

  25. 25

    Flexbox Vertical and horizontal center with bootstrap classes

  26. 26

    Resize a grid with respect to horizontal center and vertical top

  27. 27

    R ggplot vertical and horizontal line intercept at center

  28. 28

    Image <a> vertical & horizontal align center and resize with % in both

  29. 29

    Bootstrap 5 horizontal and vertical center on form

HotTag

Archive