Jump to content

Setting Margins

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
fuggles

fuggles

    Newbie

  • Members
  • Pip
  • 4 posts
With my page, I have a background, and then a blue box(a picture) covering the whole page, except for a little bit at the sides and top. How would I set it(using HTML or CSS) so that no text or elements would be outside of that box?

#2
BlaineSch

BlaineSch

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,448 posts
Can we see it? Is the picture the background? If you are setting margins use CSS
html, body {
	margin: 0px;
}


#3
fuggles

fuggles

    Newbie

  • Members
  • Pip
  • 4 posts
Ok, thats what I needed to know. What property to use to set that. Thanks.