Is there any way to make checkboxes with rounded corners using bootstrap or some css property?
相关问题
- Views base64 encoded blob in HTML with PHP
- Is there a way to play audio on a mobile browser w
- HTML form is not sending $_POST values
- implementing html5 drag and drop photos with knock
- Adding a timeout to a render function in ReactJS
Try to do
Try with this css:
I thing the best way to make a rounded corners is by using the
border-radius
property. This site has a nice collection of checkboxes. For example:The last line
(border-radius: 10px)
will give you a checkbox with rounded corners.