You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2024. It is now read-only.
* Assume that the "bordered_container" class is a property of DIV elements.
*/
.bordered_container {
border-color: #00ff00; /* Make the borders of HTML elements whose class property is "bordered_container" GREEN in color. */
border-width: 3px; /* Make the borders of HTML elements whose class property is "bordered_container" 3 pixels in width. */
border-style: solid; /* Make the borders of HTML elements whose class property is "bordered_container" solid (rather than dotted, et cetera). */
border-radius: 5px; /* Make each one of the 4 corners of HTML elements whose class property is "bordered_container" rounded with a circumference of 5 pixels. */
padding: 10px; /* Create a space which is 10 pixels in width between the content and the borders HTML elements whose class property is "bordered_container". */
margin: 10px; /* Create a space which is 10 pixels in width between adjacent HTML elements whose class property is "bordered_container". */