代码之家  ›  专栏  ›  技术社区  ›  coderex

如何在页面底部创建dock类型工具栏?

  •  6
  • coderex  · 技术社区  · 15 年前

    喜欢 http://www.online-photoshoptutorials.com/2008/08/folding-corners.html

    2 回复  |  直到 15 年前
        1
  •  17
  •   Matt Bridges    15 年前
    <div id="toolbar" style="position: fixed; bottom: 0px; left: 0px; width: 100%; color: #fff; background: #000;">
    Toolbar Content 
    <!-- rest of your toolbar stuff here -->
    </div>
    

    这将创建一个具有黑色背景的div,该div将保留在屏幕底部,而不考虑浏览器的大小或滚动。然后,您可以根据自己的喜好设置该div的样式。

        2
  •  2
  •   Stefano Borini    15 年前

    您可以使用css指令进行定位

    position: fixed;
    

    more details and tinkering for the positioning