Can you style an active form input's label with just CSS

前端 未结 8 2172
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-14 06:42

Given the following html



         


        
8条回答
  •  星月不相逢
    2020-12-14 06:52

    No. there is unfortunately no predecessor selector in css

    input:focus -+ label { ... }
    

    would be lovely.

    having the label after the input would be dooable:

    input:focus + label { ... }
    

    you could use some positioning to display before...

提交回复
热议问题