I have a situation I need a border to be applied to a div when the input it contains has text, I have this:
<div class= "parent" >
<input placeholder = " ">
</div>
parent:hover :not(input:placeholder-shown){
border: 2px solid $blue-two;
}
but the border is applied to the input and I need it to apply to the parent div, hope you can help me, thanks