Use images instead of radio buttons

后端 未结 8 1826
Happy的楠姐
Happy的楠姐 2020-11-22 16:47

If I have a radio group with buttons:

\"Image

... how can I show only images in the select option i

8条回答
  •  盖世英雄少女心
    2020-11-22 17:24

    You can use CSS for that.

    HTML (only for demo, it is customizable)

    ...

    CSS

    input[type="radio"] {
        display: none;
    }
    input[type="radio"]:checked + label {
        border: 1px solid red;
    }
    

    jsFiddle

提交回复
热议问题