How to move the table to the center | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
13th May 2020, 10:23 PM
Radwa Hamdy
11 Answers
0
to achieve this you need to: 1. put the table in a div.container. 2. give the container a width of 100vw or 100% 3. style the container with display:flex; aligning it to align it to the center. you can easily look up tutorials on flex.
15th May 2020, 10:04 PM
Logomonic Learning
Logomonic Learning - avatar
+ 2
Just change align left to center align = "center"
13th May 2020, 10:49 PM
A͢J
A͢J - avatar
+ 2
Radwa Hamdy Please don't use align attribute on html tags, it's obsolete HTML center element. It might not work on new browsers soon. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/center Use text-align: center css instead.
27th Jun 2020, 5:14 AM
Calviղ
Calviղ - avatar
0
Thanks
14th May 2020, 12:59 AM
Radwa Hamdy
0
But I changed it and nothing changed
14th May 2020, 1:19 AM
Radwa Hamdy
0
Radwa Hamdy You can do one thing put table inside div and make div in center.
14th May 2020, 5:30 AM
A͢J
A͢J - avatar
0
Ok thanks
14th May 2020, 7:41 AM
Radwa Hamdy
0
AJ #Infinity Love It didn't work
14th May 2020, 8:43 AM
Radwa Hamdy
0
In order to move the table to the center, this require css . You can chose to use either the inlineer sheet, internal style sheet or the external style sheet. But I will recommend the external style sheet it keeps ur codes in order. Use the table as the selector, and the property should be align - text and the value should be center. Ex. table{ align-text: center }
14th May 2020, 4:47 PM
Nathaniel Gibson
Nathaniel Gibson - avatar
0
But when you are running your table in a div you use the Id attributes or the class attributes. in the opening tag of the table in the div
14th May 2020, 4:50 PM
Nathaniel Gibson
Nathaniel Gibson - avatar
0
Thanks
14th May 2020, 4:58 PM
Nathaniel Gibson
Nathaniel Gibson - avatar