CSS supports shorthand properties for margin, border properties, etc.
For example:
margin-top: 1.5em; margin-right: 1em; margin-bottom: 1.5em; margin-left: 1em;
could be written in shorthand format as
margin: 1.5em 1em 1.5em 1em;
Home » Using Shorthand Properties in CSS
CSS supports shorthand properties for margin, border properties, etc.
For example:
margin-top: 1.5em; margin-right: 1em; margin-bottom: 1.5em; margin-left: 1em;
could be written in shorthand format as
margin: 1.5em 1em 1.5em 1em;
At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.
See our full editorial policy.