subject

Next, format the appearance of the article title. Go to the Section Left Styles section and create a style rule for the h1 heading in the left section article that changes the text color to rgb(211, 211, 211) and adds a black text shadow with 0-pixel offsets and a blur size of 5 pixels.

Andrew has included an image of Charles Messier, the originator of the Messier catalog of stellar objects. The image is marked with the id "mportrait". In the Section Left Styles section, create a style rule for this object that modifies the appearance of this image by applying the following filters:

the drop-shadow filter with a horizontal offset of –15 pixels, a blur of 5 pixels, and a color of rgba(51, 51, 51, 0.9);

a grayscale filter with a value of 0.7; and

an opacity filter with a value of 0.6.

Andrew wants the Charles Messier image flipped horizontally. Add a style to transform the image by rotating it 180° around the y-axis.

Someone posted the below answer on Chegg but it is wrong!

/* Section Left Styles */
#left > article h1
{
color:rgb(211, 211, 211); /*changes the text color to rgb(211, 211, 211) */
text-shadow: 0px 0px 5px black; /* adds a black text shadow with 0-pixel offsets and a blur size of 5 pixels. */
}

#left > article #mportrait
{
filter: drop-shadow(-15px 0px 5px rgba(51, 51, 51, 0.9)) grayscale(0.7) opacity(0.6); /*drop-shadow filter with a horizontal offset of –15 pixels, a blur of 5 pixels, and a color of rgba(51, 51, 51, 0.9); a grayscale filter with a value of 0.7; and an opacity filter with a value of 0.6.*/
transform: rotateY(180deg); /*rotating the image 180° around the y-axis. */
}

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 20:50
What does operator overloading allow you to do?
Answers: 2
question
Computers and Technology, 22.06.2019 23:30
For her science class, elaine is creating a presentation on weather in the united states. she wants to make the presentation beautiful and interesting by drawing simple cloud or wave shapes. which is the best way for elaine to draw these shapes?
Answers: 1
question
Computers and Technology, 23.06.2019 07:00
Why is investing in a mutual fund less risky than investing in a particular company's stock? a. mutual funds only invest in blue-chip stocks. b. investments in mutual funds are more liquid. c. mutual funds hold a diversified portfolio of stocks. d. investments in mutual funds offer a higher rate of return.
Answers: 2
question
Computers and Technology, 23.06.2019 09:20
How to print: number is equal to: 1 and it is odd number number is equal to: 2 and it is even number number is equal to: 3 and it is odd number number is equal to: 4 and it is even number in the console using java using 1 if statement, 1 while loop, 1 else loop also using % to check odds and evens
Answers: 3
You know the right answer?
Next, format the appearance of the article title. Go to the Section Left Styles section and create a...
Questions