CSS: Position loading indicator in the center of the screen

后端 未结 7 1238
无人及你
无人及你 2021-01-30 21:00

How can I position my loading indicator in the center of the screen. Currently I\'m using a little placeholder and it seems to work fine. However, when I scroll down, the loadin

7条回答
  •  再見小時候
    2021-01-30 21:25

    use position:fixed instead of position:absolute

    The first one is relative to your screen window. (not affected by scrolling)

    The second one is relative to the page. (affected by scrolling)

    Note : IE6 doesn't support position:fixed.

提交回复
热议问题