,

Learn CSS-3 Border Width, Border Radius, and ShortHand Properties from Ahamad Genius at nightBridge Studio | CSS Tutorial #6

Posted by


Welcome to our CSS tutorial on border width, border round, and shorthand properties in CSS-3. In this tutorial, we will cover everything you need to know about styling borders in CSS to make your web designs more visually appealing.

Border Width: The border-width property in CSS allows you to specify the width of a border. You can set it using pixels, ems, rems, or percentages.

Example:

.border {
  border-width: 2px;
}

This will give the element with the class "border" a 2-pixel border width.

Border Round: The border-radius property in CSS allows you to create rounded corners for borders. You can set it using pixels, ems, rems, or percentages.

Example:

.rounded {
  border-radius: 10px;
}

This will give the element with the class "rounded" rounded corners with a radius of 10 pixels.

Shorthand: The border property in CSS allows you to set all of the border properties in one declaration. This can make your code more concise and easier to read.

Example:

.shorthand {
  border: 2px solid black;
}

This will give the element with the class "shorthand" a 2-pixel solid black border.

Summary:

  • Use the border-width property to set the width of a border.
  • Use the border-radius property to create rounded corners for borders.
  • Use the border property to set all border properties in one declaration.

Now that you have learned about border width, border round, and shorthand properties in CSS-3, you can start applying them to your web designs to make them look more professional and polished. Experiment with different values and combinations to see what works best for your projects. Happy coding!