specific selector in css code example
Example 1: 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;
}
Example 2: what is a css selector
h1 {
color: red;
}
In this CSS code example that sets the color of all h1s to red
the "h1" is the selctor because we are applying this style to
the h1s.