Blog Desk       February 10, 2020      883

How do you display a border like this:(The top border = 10 pixels The bottom border = 5 pixels The left border = 20 pixels The right border = 1pixel?)

  1. border-width:10px 1px 5px 20px;
  2. border-width:10px 5px 20px 1px;
  3. border-width:10px 20px 5px 1px;
  4. border-width:5px 20px 10px 1px;

The Right Answer is : Option A

Explanation