id class div priority code example
Example: css priority rules
/* CSS Hierarchy: You can apply a global CSS rule and, using internal or
inline CSS, cause particular changes to each html page */
/* Highest priority to lowest priority: */
/* 1º - Inline CSS */
<body style="background-color: green;">
...
</body>
/* 2º - Internal CSS */
<head>
<style>
body {
background-color: blue;
}
</style>
</head>
/* 3º - External CSS with id or class selectors */
.name_of_class {
color: #5c8d89;
}
#name_of_id {
font-size: 30px;
}
/* 4º - External CSS with tag selectors */
body {
background-color: red;
}
h1 {
color: #74b49b;
}