How can I make my Website completely Borderless? I always get these Border which is supper annoying. Here's how it looks:
Can someone please help me fix this? I currently am making a website as a Project for my School, so please be kind.
How can I make my Website completely Borderless? I always get these Border which is supper annoying. Here's how it looks:
Can someone please help me fix this? I currently am making a website as a Project for my School, so please be kind.
By default, all browsers add a margin to html
and body
tags. There is much more to this; they are called user-agent-stylesheet
.
You need to edit your stylesheet (css) and add:
html, body {
margin: 0;
/** Possibly padding too **/
padding: 0;
}
I suggest reading about reset rules.