Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS :only-of-type Selector</title> <style type="text/css"> li:only-of-type { background:#ff0000; } </style> </head> <body> <ul> <li>first item</li> </ul> <ul> <li>first item</li> <li>second item</li> <li>third item</li> </ul> <p> <span>This is first paragraph</span> </p> </body> </html>
  Preview Arrow