blob: cafb8eaffc62d55bc85aa1069c3cdd419b3da9f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
Question:
In this assignment, you created style rules for the aside,
figure, and figcaption elements. Discuss at least three
different declarations you would use to improve the
appearance of these elements.
Answer:
1. Shrink the figure element border:
figure{
border: 2px solid #2A1F14;
}
2. Remove the text shadow from the figcaption element:
figcaption{
text-shadow: 0px 0px 0px #000000;
}
3. Shrink the figcaption element top border:
figcaption{
border-top: 3px solid #2A1F14;
}
4. Add a subtle padding to the figure element:
figure{
padding: 0.3%;
}
5. Use a better looking font for the aside element:
aside{
font-family: "Emblema One",system-ui;
}
|