hover-menu in right side of fixed div

前端 未结 2 1710
长发绾君心
长发绾君心 2021-01-25 22:00

I have a div with a fixed position (a top panel) which shall also contain a settings menu at the far right (currently via floating).

When hovering over the settings-imag

2条回答
  •  不思量自难忘°
    2021-01-25 22:31

    No jQuery necessary, just give your #panel a width:

    #panel {
      position: fixed;
      width: 100%;
    }
    #settings {
      float: right;
    }
    

    See DEMO.

提交回复
热议问题