Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Reset

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #40213
    psfan
    Member

    What’s the best practice? and linking to multiple css file is good or bad?

    #111484
    Kitty Giraudel
    Participant

    More links = more HTTP requests = slower pageload. However you can concatenate your CSS files into one to avoid multiple HTTP requests.

    About CSS reset, you have a few options:
    – Barbarian style: padding:0; margin:0;
    – Paladin style: the CSS reset from Eric Meyer resets what needs to be reseted (http://meyerweb.com/eric/tools/css/reset/)
    – Hunter style : the CSS “reset” from Nicolas Gallagher is an alternative fixing inconsistancies but preserving default styles (http://necolas.github.com/normalize.css/)

    I personally use the reset from Eric Meyer.

    #111629
    psfan
    Member

    okay, I’ll follow these very helpful advice. thanks a lot guys.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.