Centering a background image, using CSS

前端 未结 13 2023
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-28 03:59

I want to center a background image. There is no div used, this is the CSS style:

body{
    background-position:center;
    background-image:url(../images/im         


        
相关标签:
13条回答
  • 2020-11-28 04:40
    background-repeat:no-repeat;
    background-position:center center;
    

    Does not vertically center the background image when using a html 4.01 'STRICT' doctype.

    Adding:

    background-attachment: fixed;
    

    Should fix the problem

    (So Alexander is right)

    0 讨论(0)
提交回复
热议问题