📜  使用 CSS 设置背景图像的大小?

📅  最后修改于: 2021-08-30 10:09:04             🧑  作者: Mango

background-size 属性用于使用 CSS 设置背景图像大小。使用 height 和 width 属性设置背景图像的大小。

句法:

background-size: width height;

笔记:

  • 如果省略第一个值,则图像采用其原始宽度。
  • 如果省略第二个值,则图像将采用其原始高度。

示例 1:本示例将背景大小设置为宽度和高度。

 
 
     
         
            Set the size of background image
         
          
        
    
      
     
        
                          

输出:

示例 2:本示例将背景大小设置为百分比。

 
 
     
         
            Set the size of background image
         
          
        
    
      
     
        
                           

输出: