border Flashcards
border-style: dotted;
creates a dotted line
border-style; dashed;
creates a dashed line;
border-style: solid;
creates a solid border line
border-style: double;
creates two border lines
groove, ridge, inset, outset
Create 3d borders that vary with color
Can you have multiple borders together?
Yes
border-style: top right bottom left;
border-style: top bottom
border-width
controls the width/thickness of the border
border-color
sets the color of the border
How do you specify specific border sides?
border-side-style
top, right, bottom, left
border-radius
rounds the border’s corners
can define the length in pixels
OR the percent%
border shorthand
The border property is a shorthand property for the following individual border properties:
border-width
border-style (required)
border-color
p {
border: 5px solid red;
}