DEV Community

Ishtyaque Ahmed
Ishtyaque Ahmed

Posted on

Learning CSS In Depth

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>

Enter fullscreen mode Exit fullscreen mode

Most Updated Style Rule will be applied.

Top comments (0)