From 22d42dd80d3c4ff186a601291e00e268259a78e9 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: rescue 7 --- 07/question.txt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 07/question.txt (limited to '07/question.txt') diff --git a/07/question.txt b/07/question.txt new file mode 100644 index 0000000..cafb8ea --- /dev/null +++ b/07/question.txt @@ -0,0 +1,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; +} -- cgit 1.4.1