Use images instead of radio buttons

后端 未结 8 1827
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:21

    Just using a class to only hide some...based on https://stackoverflow.com/a/17541916/1815624

    /* HIDE RADIO */
    .hiddenradio [type=radio] { 
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }
    
    /* IMAGE STYLES */
    .hiddenradio [type=radio] + img {
      cursor: pointer;
    }
    
    /* CHECKED STYLES */
    .hiddenradio [type=radio]:checked + img {
      outline: 2px solid #f00;
    }

提交回复
热议问题