Home » Tip Bank » Web Development » CSS |
|
Jan 7, 2019
- google+
- in
WEBINAR:
On-Demand
Building the Right Environment to Support AI, Machine Learning and Deep Learning
Watch
→
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;
Srinath MS
![]() |
Submit a Tip | ![]() |
Browse "Web Development" Tips | ![]() |
Browse All Tips |
javascriptkit.com