Checkbox not clickable

Asked

Viewed 229 times

0

I want to make the checkboxes of a specific page on my site visible, but not clicked, where the user can only interact with them after logging in. Is there any CSS solution for this situation in particular? Type the . disabled class that exists in bootstrap for Buttons?

1 answer

1


Use your own HTML, with the appeal disabled.

<form action="">
<input type="checkbox" disabled name="1" value="">Desabilitado<br>
<input type="checkbox" name="2" value="">Habilitado
</form>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.