Complete the code to fix the element's horizontal constraint to the left side.
element.constraints.horizontal = '[1]'
Setting the horizontal constraint to 'Left' fixes the element to the left side of its container.
Complete the code to set the vertical constraint to keep the element fixed to the bottom.
element.constraints.vertical = '[1]'
Setting the vertical constraint to 'Bottom' keeps the element fixed to the bottom edge of its container.
Fix the error in the code to make the element resize horizontally with its container.
element.constraints.horizontal = '[1]'
Using 'Scale' for horizontal constraints makes the element resize proportionally with its container.
Fill both blanks to fix the element to the top-right corner responsively.
element.constraints.horizontal = '[1]' element.constraints.vertical = '[2]'
Setting horizontal to 'Right' and vertical to 'Top' fixes the element to the top-right corner.
Fill all three blanks to make the element fixed to the bottom-left corner and resize vertically.
element.constraints.horizontal = '[1]' element.constraints.vertical = '[2]' element.resize.vertical = '[3]'
Setting horizontal to 'Left', vertical to 'Bottom', and vertical resize to 'Scale' fixes the element to bottom-left and allows vertical resizing.