pure css hover show another element possible?

后端 未结 1 1784
萌比男神i
萌比男神i 2021-01-01 11:33

  text here always show
 
hide text here
a:hover{ //when hover show \'hide tex
1条回答
  •  情话喂你
    2021-01-01 11:55

    a div {
        display: none;
    }
    
    a:hover div {
        display: block;
    }
    

    0 讨论(0)
提交回复
热议问题