CSS :only-of-type Selector

You are Here:

CSS :only-of-type Selector

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:only-of-type{ color: red; } div{ border: 1px solid #8c8c8c; margin: 15px 0; } </style> </head> <body> <h1>CSS :only-of-type Selector</h1> <p>I'm only p of body (direct child of body).</p> <div> <a href="/js">Learn JavaScript</a> <p>I'm only p of div (direct child of this div).</p> </div> <div> <p>I'm first p of my parent (div).</p> <p>I'm second p of my parent (div).</p> </div> </body> </html>

Syntax

Using CSS

.only-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.

Share this Page

Meet the Author