CSS :first-of-type Selector
You are Here:
CSS :first-of-type Selector
Example
HTML Online Editor
<!DOCTYPE html>
<html lang="en-US">
<head>
<style>
p:first-of-type{
color: red;
}
div{
border: 1px solid #8c8c8c;
margin: 15px 0;
}
</style>
</head>
<body>
<h1>CSS :first-of-type Selector</h1>
<p>This is the first paragraph of its parent (body).</p>
<div>
<h2>Heading</h2>
<a href="/js">Learn JavaScript</a>
<p>This is the first paragraph of its parent (div).</p>
<p>This is the second paragraph of its parent (div).</p>
</div>
</body>
</html>
Syntax
Using CSS
:first-of-type {
color: red;
}
Reminder
Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in CSS.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.