📜  HTML | DOM 样式剪辑属性

📅  最后修改于: 2021-11-03 10:10:39             🧑  作者: Mango

HTML DOM 中的Style 剪辑属性用于设置返回定位元素的可见部分。

句法:

  • 它返回剪辑属性。
    object.style.clip
  • 它用于设置剪辑属性。
    object.style.clip = "rect(top right bottom left)|normal|initial|
    inherit"

属性值:

  • rect(左上右下):该值用于将元素裁剪为矩形。 top、right、bottom 和 left 值用于定义矩形的点。

    示例 1:

    
    
      
    
        
          DOM Style clip Property
        
        
    
      
    
        

          GeeksforGeeks     

        DOM Style clip Property     

            The clip property is used to specify        the part of a positioned element that is visible.     

                                       

    输出:

    点击按钮前:
    剪辑前

    点击按钮后:
    剪辑后

  • normal:该值不会裁剪元素。这是默认值。

    示例 2:

    
    
      
    
        
          DOM Style clip Property
        
        
    
      
    
        

          GeeksforGeeks     

        DOM Style clip Property     

            The clip property is used to specify         the part of a positioned element         that is visible.     

                                       

    输出:

    点击按钮前:
    正常之前

    点击按钮后:
    正常后

  • 初始值:用于将此属性设置为其默认值。

    示例 3:

    
    
      
    
        
          DOM Style clip Property
        
         
        
    
      
    
        

          GeeksforGeeks     

               DOM Style clip Property          

            The clip property is used to specify         the part of a positioned element          that is visible.     

                                       

    输出:

    点击按钮前:
    初始之前

    点击按钮后:
    初始之后

  • 继承:这从其父级继承属性。
    示例 4:
    
    
      
    
        
          DOM Style clip Property
        
          
        
    
      
    
        

          GeeksforGeeks     

             DOM Style clip Property     

            The clip property is used to specify       the part of a positioned element that        is visible.     

             
                 
                        

    输出:

    点击按钮前:
    先继承

    点击按钮后:
    继承

支持的浏览器: DOM Style clip属性支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • 火狐
  • 歌剧
  • 苹果Safari