HTeuMeuLeu’s avatarHTeuMeuLeu’s Twitter Archive—№ 14,791

    1. …in reply to @CAWise1
  1. …in reply to @HTeuMeuLeu
    @CAWise1 Basically, you must realize that <noinput> will englobe the rest of your code normally following the <input>.
    1. …in reply to @HTeuMeuLeu
      @CAWise1 So make sure to force the display of the noinput tag in case you hide your <input> tags.
      1. …in reply to @HTeuMeuLeu
        @CAWise1 And use child selectors to target your code instead of sibling selectors. Here's an example…
        1. …in reply to @HTeuMeuLeu
          @CAWise1 noinput.checkbox { display:block !important; } .checkbox:checked ~ .something, noinput.checkbox:hover .something { … }