search

Home  >  Q&A  >  body text

css3 - CSS如何取消:hover绑定事件

屏幕宽度大于1000px时,搜索框宽度设置为:

.search-form{width:200px;}
.search-form:hover{width:250px;}

当屏幕小于1000px时,如何取消:hover绑定事件,让宽度固定?

天蓬老师天蓬老师2779 days ago808

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-04-17 11:31:46

    If using css3:

    .search-form{width:200px;}
    @media screen and (min-width:1000px){
        .search-form:hover{width:250px;}
    }
    

    reply
    0
  • ringa_lee

    ringa_lee2017-04-17 11:31:46

    pointer-event:none;

    The specific name may be spelled incorrectly

    reply
    0
  • Cancelreply