diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-12 07:28:30 +0000 |
commit | 05158207fdd9bbd1371fac856278ae3cebad5642 (patch) | |
tree | ec59f5bcbaabfc1d0b90a5cb4b651815b1f94f49 /06/question.txt | |
parent | rescue 5 (diff) | |
download | html-05158207fdd9bbd1371fac856278ae3cebad5642.tar html-05158207fdd9bbd1371fac856278ae3cebad5642.tar.gz html-05158207fdd9bbd1371fac856278ae3cebad5642.tar.bz2 html-05158207fdd9bbd1371fac856278ae3cebad5642.tar.xz html-05158207fdd9bbd1371fac856278ae3cebad5642.zip |
rescue 6
Diffstat (limited to '06/question.txt')
-rw-r--r-- | 06/question.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/06/question.txt b/06/question.txt new file mode 100644 index 0000000..ad33b21 --- /dev/null +++ b/06/question.txt @@ -0,0 +1,22 @@ +Question: +In step 14, you created a style rule for a gradient. Discuss +at least three different ways this gradient could be applied. + +Answer: +Some alternative ways to create this gradient would be: + +1. background: linear-gradient(hsl(33,50%,93%),hsl(30,35%,35%)); + + Using HSL colors values instead of hexadecimal color values + +2. background-image: src("gradient.png"); + + Designing a gradient image to use as the background + +3. background: linear-gradient(180deg,#F6EEE4,#78593A); + + Specifying the rotation of the gradient to 180 degrees + +4. background: linear-gradient(rgb(246,238,228),rgb(120,89,58)); + + Using RGB colors values instead of hexadecimal color values |