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 19, 2022. It is now read-only.
* Create a space which is 10 pixels in width between adjacent div elements with the class property "bordered_container".
*/
.bordered_container {
border-color: #00ff00; /** Make the borders of div elements whose class property is "bordered_container" GREEN in color. */
border-width: 3px; /** Make the borders of div elements whose class property is "bordered_container" 3 pixels in width. */
border-style: solid; /** Make the borders of div elements whose class property is "bordered_container" solid (rather than dotted, et cetera). */
border-radius: 5px; /** Make the corners of div 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 div content and div borders for div elements whose class property is "bordered_container". */
margin: 10px; /** Create a space which is 10 pixels in width between adjacent div elements whose class property is "bordered_container". */