Random CSS background image

前端 未结 6 996
囚心锁ツ
囚心锁ツ 2021-01-26 10:19

I can\'t find anything that works for me, and since I\'m a cut and paste html editor (I know only the main basic stuff), I don\'t understand most of the other posts. This is the

6条回答
  •  梦谈多话
    2021-01-26 10:54

    Inside of your PHP page, inside of the head tag, you could alter the #banner style. Because CSS is cascading, doing this will override anything inside of your external style sheet

    my_style_sheet.css

    #banner {
        background-attachment: scroll,                          fixed;
        background-color: #666;
        background-position: top left,                      center center;
        background-repeat: repeat,                          no-repeat;
        background-size: auto,                          cover;
        color: #fff;
        padding: 12em 0 20em 0;
        text-align: center;
    }
    

    my_page.php

    
      
      
    

    Javascript example

    ...
    
    
    

提交回复
热议问题