- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>Checkboxes, step 2</title>
<meta charset="utf-8">
<link rel="stylesheet" href="material.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="green-theme">
<section class="card">
<h1 class="question"><span>What are the correct values for the position property?</span></h1>
<form class="answers" action="https://echo.htmlacademy.ru/courses" method="post">
<button class="fab" type="submit"></button>
<div>
<input type="checkbox" id="answer1">
<label for="answer1">absolute</label>
</div>
<div>
<input type="checkbox" id="answer2">
<label for="answer2">great</label>
</div>
<div>
<input type="checkbox" id="answer3">
<label for="answer3">majestic</label>
</div>
</form>
</section>
</body>
</html>
CSS
label {
position: relative;
cursor: pointer;
}
label::before {
position: absolute;
top: 0;
left: -44px;
z-index: 1;
width: 16px;
height: 16px;
border: 2px solid #5a5a5a;
content: "";
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked ~ label::before {
}
You’ve gone to a different page
Goalscompleted
0
Set the following for the selected state of the pseduo-checkbox:
- a width of
21px
and a height of10px
, - border color of
#00bad2
, - top and right edge border style of
none
.
Toggle the checkboxes to test the result.
Comments