Home > Web Front-end > CSS Tutorial > How Can I Style Checked Checkbox Labels Without JavaScript?

How Can I Style Checked Checkbox Labels Without JavaScript?

Linda Hamilton
Release: 2024-11-26 13:25:11
Original
984 people have browsed it

How Can I Style Checked Checkbox Labels Without JavaScript?

Highlighting Labels for Checked Checkboxes Without JavaScript

Can you modify the appearance of a label when its associated checkbox is ticked using methods other than JavaScript?

Solution:

Utilize the adjacent sibling combinator in CSS:

.check-with-label:checked + .label-for-check {
  font-weight: bold;
}
Copy after login

This code allows you to highlight labels associated with ticked checkboxes. Here's an example HTML markup that leverages this approach:

<div>
  <input type="checkbox" class="check-with-label">
Copy after login

The above is the detailed content of How Can I Style Checked Checkbox Labels Without JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template