jQuery autocomplete : move list position?

后端 未结 4 1674
梦谈多话
梦谈多话 2021-01-18 04:52

I am wondering if it is possible for me to move the dropdown list down 4px?

I have tried several styles in .ui-autocomplete {}.

including:

4条回答
  •  离开以前
    2021-01-18 05:52

    Try

    .ui-autocomplete {
         margin-top: 20px !important;
         top: 0px !important;
    }
    

    Or try

    .ui-autocomplete {
         margin-top: 20px !important;
         top: auto !important;
    }
    

    See a demo:

    • http://www.jsfiddle.net/xvVKW/1/
    • http://www.jsfiddle.net/xvVKW/3/

提交回复
热议问题