Increasing the size of checkbox in HTML

后端 未结 9 1777
一向
一向 2020-12-15 16:55

Is there any way to increase the size of checkbox in HTML?

9条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-15 17:45

    No. Most browsers ignore the width or height CSS styling of a checkbox. There are two ways around that:

    • Use a label tag so that clicking some other element also triggers the textbox.
    • Make your own checkbox using Javascript, by switching an image and filling a hidden input box.

提交回复
热议问题