base.css

What is base.css?

The browsers use different style sheets to format our websites.
Firefox has one default CSS file and Opera has another…
Safari’s CSS unlike IE’s defaults…
More and more another apperance for viewing pages on the web.

The reason of dissimilarity are uncompatibility between these files & companies.

What are the main differences about browsers?
Margins, paddings, typefaces, sizes etc.

This file is another reset.css with basic formattings.
Your websites with this CSS file can appear very similary on many browsers,
’cause it will be overwrite the browser default sets.

Using

Put these lines to the head element of HTML file.

<link rel="stylesheet" media="all"
    href="http://static.kgyt.hu/download/base.css/2.0/base-min.css">
<!--[if IE 7]><link rel="stylesheet"
    href="http://static.kgyt.hu/download/base.css/2.0/base-ie7.css">
<![endif]-->
<!--[if lt IE 7]><link rel="stylesheet"
    href="http://static.kgyt.hu/download/base.css/2.0/base-ie6.css">
<![endif]-->

Put these lines to the head element of XHTML file.

<link rel="stylesheet" media="all"
    href="http://static.kgyt.hu/download/base.css/2.0/base-min.css" />
<!--[if IE 7]><link rel="stylesheet"
    href="http://static.kgyt.hu/download/base.css/2.0/base-ie7.css" />
<![endif]-->
<!--[if lt IE 7]><link rel="stylesheet"
    href="http://static.kgyt.hu/download/base.css/2.0/base-ie6.css" />
<![endif]-->

Download

http://static.kgyt.hu/download/base.css/2.0/base.css

http://static.kgyt.hu/download/base.css/2.0/base-ie7.css

http://static.kgyt.hu/download/base.css/2.0/base-ie6.css

http://static.kgyt.hu/download/base.css/2.0/base-min.css

Links

License

Public domain.

One thought on “base.css

Leave a Reply

Your email address will not be published. Required fields are marked *