CSS
- 7 ответов
- 0 вопросов
10
Вклад в тег
$('input[type="checkbox"]').change(function(event){
if(event.target.checked){
alert("Checkbox is checked.");
} else {
alert("Checkbox is unchecked.");
}
});
.block1 {
/* background: #323232; */
/* z-index: 10; */
}
.block1::after {
content: "";
position: relative;
display: block;
height: 100%;
background: #323232;
}
img {
/* z-index: 1; */
}