16. Border
Creates borders around an element.
.elemento {
/*
border: [size] [style] [color];
*/
border: 1px solid black;
}
Top border
.elemento {
/*
border-top: [size] [style] [color];
*/
border-top: 1px solid black;
}
Right border
.elemento {
/*
border-right: [size] [style] [color];
*/
border-right: 1px solid black;
}
Bottom border
.elemento {
/*
border-bottom: [size] [style] [color];
*/
border-bottom: 1px solid black;
}
Left border
.elemento {
/*
border-left: [size] [style] [color];
*/
border-left: 1px solid black;
}
width
Border size.
.elemento {
border-width: 2rem;
}
style
Border style.
.elemento {
/* Most used */
border-style: solid;
border-style: none;
/* Others */
border-style: hidden;
border-style: dotted;
border-style: dashed;
border-style: double;
border-style: groove;
border-style: ridge;
border-style: inset;
border-style: outset;
}
color
Border color.
.elemento {
border-color: orange;
}
radius
Rounds the corners.
.elemento {
border-radius: 4rem;
}
If the element is square and has a
border-radius: 50%or greater, you will get a circle.
image
Uses a custom image.
.elemento {
border: 4rem solid;
border-image: linear-gradient(#f6b73c, #4d9f0c) 1;
}
Activity 1
Activity 2
Starting from the image in activity 1, use borders to achieve the following result.

Activity 3
Starting from the image in activity 1, use borders to achieve the following result.

Activity 4
Starting from the image in activity 1, use borders to achieve the following result.

This work is under a Attribution-NonCommercial-NoDerivatives 4.0 International license.
Building SPAs with Django and HTML Over the Wire: Learn to build real-time single page applications with Python
The HTML over WebSockets approach simplifies single-page application (SPA) development and lets you bypass learning a JavaScript rendering framework such as React, Vue, or Angular, moving the logic to Python. This web application development book provides you with all the Django tools you need to simplify your developments with real-time results.
Buy the bookHelp me keep writing
Every coffee gives me a push toward the next article.

Sure, it's on me!
Comments
There are no comments yet.