Answers for "how to align table header center"

0

how to center table text in html

.table{
	text-align:center
}
Posted by: Guest on April-05-2022
0

align table in middle of page

table#yourTable {
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -(H/2)px -(W/2)px;
    width: Wpx;
    height: Hpx;
}
Posted by: Guest on August-29-2020

Code answers related to "how to align table header center"

Browse Popular Code Answers by Language