When Checkbox is Checked Expand Div

后端 未结 7 1611
野性不改
野性不改 2021-02-10 16:52

I have a checkbox:


This content should app
7条回答
  •  清歌不尽
    2021-02-10 17:24

    If you are looking for only css solution, then this can help you.

    #toggle-content{
    display:none;
    }
    #mycheckbox:checked ~ #toggle-content{
      display:block;
      height:100px;
    
    }
    

    Fiddle

提交回复
热议问题