Rubinder
Rubinder

Reputation: 47

CSS Margin trouble with Chrome?

Following is the css code for body element. The problem is that if i set width to 100% then there is no margin on right side, only margin comes on left side. i tested on chrome.Also if i do anything like 1000px the problem occurs

body {
        background:#ff00ff ;        
        margin: 50px;
        width:100%;
        border:5px ;
        border : dotted;  
}

Upvotes: 0

Views: 77

Answers (1)

tomsullivan1989
tomsullivan1989

Reputation: 2780

Just remove the width: 100%; and it should be fine.

DEMO

Upvotes: 1

Related Questions