Header message just like at Stack Overflow

前端 未结 5 1282
说谎
说谎 2020-12-02 05:05

This is the first time I visited stack overflow and I saw a beautiful header message which displays a text and a close button.

The header bar is fixed one and is gre

5条回答
  •  温柔的废话
    2020-12-02 05:38

    The relevant css would include:

    position: fixed;
    top: 0;
    width: 100%;
    

    More information about position:fixed:

    An element with position: fixed is positioned at the specified coordinates relative to the browser window. The element's position is specified with the "left", "top", "right", and "bottom" properties. The element remains at that position regardless of scrolling. Works in IE7 (strict mode)

    If IE6 support is important to you, you may wish to research workarounds.

提交回复
热议问题