Question: Question 21 What is the resulting CSS for this mixin? @mixin shadow-style($size, scolor) { text-shadow: $size $size Scolor; } shadow @include shadow-style(3px, red); shadow text-shadow:



Question 21 What is the resulting CSS for this mixin? @mixin shadow-style($size, scolor) { text-shadow: $size $size Scolor; } shadow @include shadow-style(3px, red); shadow text-shadow: 3px red; 1 shadow text-shadow: 3px 3px red; shadow shadow-style: 3px 3px redi 1 shadow style red C Question 22 What CSS defines a flex container? o flex-container: 1; O flex: 01 auto; display: flex; Oflex-basis: auto; Question 23 What is displayed on the web page with this code?
.container { display: flex; width: 150px; justify-content: space-between; flex-direction: row-reverse; } .item { flex-basis: 25%; text-align: center; } h Right Left Left Right Right Left Left Right Question 24 Using this code, how many rows does the grid have?
#grid-container display: grid; grid-template-columns: 40% 25% 1ex auto; 3 2 1 4 8
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
