HTML table wont fit whole screen no matter what

后端 未结 3 1554
小蘑菇
小蘑菇 2021-01-26 18:04

Basically, I have a table on my website that wont fit 100% width of the browser screen. Even when I change the width to 110% it simply overlaps the right side but still has a ma

相关标签:
3条回答
  • 2021-01-26 18:20

    I had this once too: the solution was to set the body's margin and padding to 0. (Perhaps width to 100% helps too.)

    0 讨论(0)
  • 2021-01-26 18:31

    DOn't forget to add a margin: 0; to the <body> tag!

    0 讨论(0)
  • 2021-01-26 18:37

    There is a default margin on the body that needs to be removed.

    Add the following css to the <head>

    <style type="text/css">
        body {margin:0;} 
    </style>
    

    Or

    <style type="text/css">
        body {margin:10px;}
        table {margin:0 -10px;}
    </style>
    
    0 讨论(0)
提交回复
热议问题