I\'m having a heck of a time with this particular CSS selector which does not want to work when I add :not(:empty) to it. It seems to work fine with any combina
:not(:empty)
input:not([value=""])
This works because we are selecting the input only when there isn't an empty string.