Home  >  Article  >  Web Front-end  >  Here are some question-based titles that fit the article content: Focusing on the core difference: * Why Doesn\'t `.class:last-of-type` Work Like `.class:last-of-class`? * What\'s the Real Behavior

Here are some question-based titles that fit the article content: Focusing on the core difference: * Why Doesn\'t `.class:last-of-type` Work Like `.class:last-of-class`? * What\'s the Real Behavior

DDD
DDDOriginal
2024-10-26 02:18:27153browse

Here are some question-based titles that fit the article content:

Focusing on the core difference:

* Why Doesn't `.class:last-of-type` Work Like `.class:last-of-class`?
* What's the Real Behavior of the `.class:last-of-type` Selector?
* Understanding

Understanding the Behavior of .class:last-of-type

The issue faced is that the selector .class:last-of-type does not function like a .class:last-of-class selector. Instead, it specifically targets elements that are the last sibling of their type within a container element.

Understanding .last-of-type

According to the W3C specification, the .last-of-type pseudo-class represents elements that are the last sibling of their type. This means that:

  1. It checks for lists of elements within each container element in the HTML.
  2. It identifies the last element in each list.
  3. It verifies that the last element matches the specified element type (e.g., p).

Applying the Rules

In the example provided, the selector .visible:last-of-type is used. This means that the styles will only be applied to:

  • Elements that are a p tag.
  • Elements that have the class .visible.
  • Elements that are the last p tag with the .visible class within their container element.

Resolving the Issue

Since only the first two p elements have the .visible class, the third p element will not meet the criteria for the .visible:last-of-type selector. As a result, its display property will not be set to block.

To achieve the desired result, consider the following options:

  • Ensure that the final p tag also has the .visible class.
  • If JavaScript cannot be used, explore alternative CSS approaches to select the last p element with a specific class.

The above is the detailed content of Here are some question-based titles that fit the article content: Focusing on the core difference: * Why Doesn\'t `.class:last-of-type` Work Like `.class:last-of-class`? * What\'s the Real Behavior. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn