Open In App

How to make checkbox visible when hover or select the element?

Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we will learn How to make a checkbox visible when:

  • It is hovered over
  • Selected

Approach: The checkbox shouldn’t be visible when not selected. It only becomes visible when hovered over again. The solution to the problem is simple. We can use the opacity property of the checkbox element and manipulate that. Just change the opacity value of the checkbox to 1 when the checkbox element is hovered over or when it is selected, using CSS. The default value of opacity should be 0

Example: In this example, we will use the above-explained approach.

html




<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width,
                   initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible"
          content="ie=edge">
    <title>Checkbox</title>
    <style>
        #box {
            margin: 50px;
            width: 50px;
            height: 50px;
            border: 2px solid black;
            padding: 10px;
        }
 
        .cardcheckbox {
            opacity: 0;
 
        }
 
        .cardcheckbox:hover,
        .cardcheckbox:checked {
            opacity: 1;
        }
    </style>
</head>
 
<body>
    <div id="box">
        <div>
            <input type="checkbox" class="cardcheckbox" align="right" />
        </div>
    </div>
</body>
</html>


Output:

 



Last Updated : 09 May, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads