• Borders

    • border (Defines border size, style, and color) 1px solid #000
    • border-radius (Rounds element corners)
  • Shadows

    • box-shadow (Adds shadow effects to elements)
  • Background

    • background-color (Defines background color)
    • background-image (Sets background images)
    • background-size (Controls background image scaling)
    • background-position (Defines background alignment)
    • background-repeat (Controls background repetition)
    • background-clip (Defines how far the background extends)
    background-clip: border-box;  /* Extends background to border */
    background-clip: padding-box; /* Extends background to padding */
    background-clip: content-box; /* Extends background to content only */
    
    • background-origin (Controls how background positioning is calculated)
  • Filters

    • filter: blur() (Applies blur effect)
    • filter: opacity() (Changes transparency)
    • filter: contrast() (Adjusts contrast levels)