Reputation: 103348
In CSS we have certain properties which affect an overall style type such as:
padding
background
border
margin
Then we have more specific properties which target particular areas of a type of style such as:
padding-left
background-color
border-left
margin-left
In general these are known as CSS Properties, however is there any terminology which seperates the above two distinct types of properties?
Upvotes: 2
Views: 67
Reputation: 887275
Properties like background
or padding
that set multiple other properties are called shorthand properties.
Upvotes: 4