CSS rendered up to buttom. If I assign a variable in line 5 and then again reassign it in line 10. Then the assignment of line 10 is the updated. This is also the case of CSS.
// This is the oldest StyleSheet
<link rel="stylesheet" href="styles.css">
<title>Document</title>
//This the semi modern stylesheet
<style>
p {
color: purple;
}
</style>
<body>
<h1 styel="color:gray;">I'am writing a blog post</h1>
Most Updated Style Rule will be applied.
Top comments (0)