class: highlight-last-item # Best Brownies, Ingredients - 1 cup milk chocolate chips -- - 2 large eggs -- - 2 teaspoons vanilla extract -- - 1/2 cup melted milk chocolate chips -- - 1/4 cup unsweetened cocoa powder -- - _More things_ --- # highlight-last-item Use this CSS chunk with the slide `class: highlight-last-item`. ```` ```{css echo=FALSE} .highlight-last-item > ul > li, .highlight-last-item > ol > li { opacity: 0.5; } .highlight-last-item > ul > li:last-of-type, .highlight-last-item > ol > li:last-of-type { opacity: 1; } ``` ````