diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-14 03:20:53 +0000 |
commit | 588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6 (patch) | |
tree | f1dbc0e6ff59af610a6043889606a8534ef6b1d4 /rescue/07/question.txt | |
parent | rescue 12 (diff) | |
download | html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.tar html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.tar.gz html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.tar.bz2 html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.tar.xz html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.zip |
rescue
Diffstat (limited to 'rescue/07/question.txt')
-rw-r--r-- | rescue/07/question.txt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/rescue/07/question.txt b/rescue/07/question.txt new file mode 100644 index 0000000..cafb8ea --- /dev/null +++ b/rescue/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; +} |