Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css border properties

/* Border-Color: Used to set the color of an element's border. */
border-color: black;

/* Border-Style: Allows you to set the style of a border - none, dotted, dashed, solid, or double. */
border-style: dotted;

/* Border-Radius: Allows you to add rounded corners to */
border-radius: 15px;

/* Border-Width: Used to set the width of an element's border. */
border-width: 20%

/* Border: Shorthand Property */
border: 10px, red, double;
Source by madni.hashnode.dev #
 
PREVIOUS NEXT
Tagged: #css #border #properties
ADD COMMENT
Topic
Name
5+4 =