(PCC)::[How-to-set-Use-shorthand-margin-property-with-two-values]::[css]
<!DOCTYPE html> <html> <head> <style> div { border: 1px solid black; margin: 25px 50px; background-color: lightblue; } </style> </head> <body> <h2>The margin shorthand property - 2 values</h2> <div>This div element has a top and bottom margin of 25px, and a right and left margin of 50px.</div> <hr> </body> </html>