Hide check radio button with css

前端 未结 7 756
一向
一向 2020-12-25 13:00

I would like to know if it is possible to hide the checked radio button with css by using:

  { display:none; }

I don\'t know how to address

相关标签:
7条回答
  • 2020-12-25 14:03

    Try visibility:hidden; This will work.

    Here is the WORKING DEMO

    The HTML:

    <input class="checked" type="radio" checked />
    

    The CSS:

    input.checked[type="radio"]{visibility:hidden;}
    

    I hope this is what you are looking for.

    0 讨论(0)
提交回复
热议问题