fix: 8th and 14th questions replaced. (#58119)

Co-authored-by: Naomi <accounts+github@nhcarrigan.com>
Co-authored-by: Ilenia <26656284+ilenia-magoni@users.noreply.github.com>
This commit is contained in:
Stephen Mutheu Muya
2025-01-14 21:13:01 +03:00
committed by GitHub
parent ad9e899f33
commit af19282885
@@ -171,23 +171,23 @@ It sets the transform origin to the center of the element's bounding box, allowi
#### --text--
What is the purpose of the `transform-origin` property in CSS?
What is the purpose of CSS's `overflow-x` and `overflow-y` properties?
#### --distractors--
It controls the animation speed of transformed elements
They adjust the padding and margin of an element.
---
It defines the display type of transformed elements
They set the background colour and font style of an element.
---
It sets the background of transformed elements
They define the visibility and display properties of an element.
#### --answer--
It specifies the point around which a transformation is applied to an element
They control the horizontal and vertical overflow of an element's content.
### --question--
@@ -303,23 +303,23 @@ Normalize.css, Eric Meyer's Reset, and HTML5 Reset
#### --text--
What does the `scale3d()` property value do in CSS?
Which CSS property is used to apply transformations such as rotation, scaling, and translation to elements?
#### --distractors--
It rotates an element in 3D space
`box-shadow`
---
It skews an element on the x, y, and z axes
`opacity`
---
It translates an element in 3D space
`z-index`
#### --answer--
It scales an element along the x, y, and z axes
`transform`
### --question--