Multiple Stylesheets

suggest change

It’s possible to load multiple stylesheets:

<head>
    <link rel="stylesheet" type="text/css" href="general.css">
    <link rel="stylesheet" type="text/css" href="specific.css">
</head>

Note that later files and declarations will override earlier ones. So if general.css contains:

body {
    background-color: red;
}

and specific.css contains:

body { 
    background-color: blue;
}

if both are used, the background of the document will be blue.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents