Giving background-color to body applying whole page. Why?

后端 未结 6 2043
梦谈多话
梦谈多话 2021-01-05 00:10



        
6条回答
  •  渐次进展
    2021-01-05 00:53

    Body means all page that display in the browser. so you want give color only to div you can use either a id or a class to give a style to that dive. as in first answer.

    
        
    Hello World!
    .some{ background-color: red; }

    or

    
        
    Hello World!
    #some{ background-color: red; }

提交回复
热议问题