/    Sign up×
Community /Pin to ProfileBookmark

remove borders

I need remove borders from popup, the code used there was
<body leftmargin=”0″ topmargin=”0″ marginwidth=”0″ marginheight=”0″ onload=”javascript:self.focus()”>

Does this css do the same?

body {margin: 0px;
}

to post a comment
CSS

2 Comments(s)

Copy linkTweet thisAlerts:
@radeMar 25.2009 — Pretty much yes.
Copy linkTweet thisAlerts:
@Major_PayneMar 26.2009 — Remove all that margin stuff from the body tag and just use:

body {

margin: 0;

padding: 0;

border: 0;

}

Or use the Universal Selector at the very top of any CSS:

  • * {

    margin: 0;

    padding: 0;

    border: 0;

    }
  • ×

    Success!

    Help @Taurus spread the word by sharing this article on Twitter...

    Tweet This
    Sign in
    Forgot password?
    Sign in with TwitchSign in with GithubCreate Account
    about: ({
    version: 0.1.9 BETA 6.17,
    whats_new: community page,
    up_next: more Davinci•003 tasks,
    coming_soon: events calendar,
    social: @webDeveloperHQ
    });

    legal: ({
    terms: of use,
    privacy: policy
    });
    changelog: (
    version: 0.1.9,
    notes: added community page

    version: 0.1.8,
    notes: added Davinci•003

    version: 0.1.7,
    notes: upvote answers to bounties

    version: 0.1.6,
    notes: article editor refresh
    )...
    recent_tips: (
    tipper: @nearjob,
    tipped: article
    amount: 1000 SATS,

    tipper: @meenaratha,
    tipped: article
    amount: 1000 SATS,

    tipper: @meenaratha,
    tipped: article
    amount: 1000 SATS,
    )...