border Flashcards

1
Q

border-style: dotted;

A

creates a dotted line

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

border-style; dashed;

A

creates a dashed line;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

border-style: solid;

A

creates a solid border line

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

border-style: double;

A

creates two border lines

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

groove, ridge, inset, outset

A

Create 3d borders that vary with color

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Can you have multiple borders together?

A

Yes

border-style: top right bottom left;

border-style: top bottom

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

border-width

A

controls the width/thickness of the border

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

border-color

A

sets the color of the border

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you specify specific border sides?

A

border-side-style

top, right, bottom, left

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

border-radius

A

rounds the border’s corners

can define the length in pixels
OR the percent%

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

border shorthand

A

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;
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly