Heya, im currently stuck and unable to solve this issue. Im trying to make a simple html table to full sreen width. Unfortunately the width/height "100%" leave white spaces around and above the table. How`d u solve this problem?
You need to use a bit of CSS to take away the margins from around the web page. Try using <style> body { margin: 0 } </style> Code (markup):
Or, you could set this as your <body> tag near the top of your page: <body style="margin:0;"> Code (markup):