Centre Alignment (Elements, Text, Images) Flashcards

1
Q

Use a CSS property that allows you to centre align an element.

A

h1{
margin: auto;
}

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

Use a CSS property that allows you to centre align text.

A

h1{
text-align: center;
}

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

Use two CSS properties to centre align an image and to make the image a block element.

A

img{
display: block;
margin: auto;
}

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