


How to select and style elements of the first specific class using CSS and JavaScript?
Apr 04, 2025 pm 11:33 PMPrecisely manipulate CSS and JavaScript: Style the first specific class element
In web development, it is often necessary to style the first element of a specific category. For example, the page has multiple elements with class="red" but only the first element is expected to appear in red. This article will demonstrate how to achieve this using CSS and JavaScript.
HTML structure example:
The following HTML code contains multiple class="red" elements:
<div id="test"> <span>I'm span</span> <h1 class="red">I'm h1, just set my style to red</h1> <h1 class="red">I'm h1</h1> <h1 class="red">I'm h1</h1> <h1>I'm h1</h1> </div>
Method 1: JavaScript implementation
JavaScript's document.querySelector()
method can easily select the first matching element. The following code sets the color of the first class="red" element to red:
document.querySelector('.red').style.color = 'red';
Method 2: CSS implementation
The :nth-child()
pseudo-class selector of CSS can be selected according to the order of elements. Combined with the of
keyword, the first element in a specific class can be selected accurately.
.red:nth-child(1 of .red) { color: red; }
To style the last class="red" element, you can use the :nth-last-child()
pseudo-class:
.red:nth-last-child(1 of .red) { color: blue; }
Compatibility Description: It should be noted that :nth-child(n of selector)
and :nth-last-child(n of selector)
may have some problems with browser compatibility. In some older browsers, this method may not work properly. Therefore, which method to choose depends on the project's browser compatibility requirements. If compatibility is critical, JavaScript methods are generally more reliable.
Summary: Both JavaScript and CSS can implement the style setting of the first element of a specific class. Developers should choose the most appropriate method based on actual project requirements and browser compatibility considerations.
The above is the detailed content of How to select and style elements of the first specific class using CSS and JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Directory What is the Puffverse(PFVS) currency? What is the future value of PFVS coins? Does PFVS coins have any prospects? PFVS token Economics and Distribution 1. Total Supply and Distribution Structure 2. Community-centric Distribution 3. Sustainable Attribution Timeline 4. Economic Sustainability Mechanism 5. Team Allocation and Destruction Commitment Functions of PFVS Coin 1. Main Utility and Game Integration 2. Participate in Governance through vePUFF Conversion 3. Pledge Rewards and Revenue Sharing 4. Economic Incentives and Creator Rewards 5. Destruction and Deflation Mechanism Summary PFVS Coin is the native token of Puffverse, and its main function is payment and rewards

The core method of building social sharing functions in PHP is to dynamically generate sharing links that meet the requirements of each platform. 1. First get the current page or specified URL and article information; 2. Use urlencode to encode the parameters; 3. Splice and generate sharing links according to the protocols of each platform; 4. Display links on the front end for users to click and share; 5. Dynamically generate OG tags on the page to optimize sharing content display; 6. Be sure to escape user input to prevent XSS attacks. This method does not require complex authentication, has low maintenance costs, and is suitable for most content sharing needs.

Ethereum is a global, decentralized open source platform known for its innovative smart contract capabilities. These smart contracts are automatically executed contracts, and the terms are written directly into the code. Ethereum (ETH) is the network's native cryptocurrency, not only used to pay for transaction fees on the platform, but also the focus of global investors' attention, and its price fluctuations have attracted much attention.

Binance is a world-renowned digital asset trading platform. Its official APP provides users with a safe and convenient mobile trading experience. Through the Binance APP, you can buy and sell cryptocurrencies anytime, anywhere, manage your digital assets and get the latest market trends.

The official version of HTX Huobi app can be downloaded safely through its official website. The platform is known for its security, stability, rich currency and convenient experience. 1. Visit the official website; 2. Select the corresponding version of the device to download; 3. Complete the installation as prompts; 4. Set up security options such as dual-factor authentication; 5. Log in to the account to start trading. The platform provides functions such as market trends, trading, asset management, etc., supports multi-language and all-weather customer service, and is a digital asset trading application trusted by global users.

Huobi is a world-renowned digital asset service platform, providing users with a safe and reliable trading experience. Huobi App integrates various functions such as market viewing, trading, asset management, etc., making it convenient for users to operate anytime, anywhere.

This article elaborates on two main methods to realize call hold and unhold in Twilio. The preferred option is to leverage Twilio's Conference feature to easily enable call retention and recovery by updating the conference participant resources, and to customize music retention. Another approach is to deal with independent call legs, which requires more complex TwiML logic, passed, and arrived management, but is more cumbersome than meeting mode. The article provides specific code examples and operation steps to help developers efficiently implement Twilio call control.

User voice input is captured and sent to the PHP backend through the MediaRecorder API of the front-end JavaScript; 2. PHP saves the audio as a temporary file and calls STTAPI (such as Google or Baidu voice recognition) to convert it into text; 3. PHP sends the text to an AI service (such as OpenAIGPT) to obtain intelligent reply; 4. PHP then calls TTSAPI (such as Baidu or Google voice synthesis) to convert the reply to a voice file; 5. PHP streams the voice file back to the front-end to play, completing interaction. The entire process is dominated by PHP to ensure seamless connection between all links.
