Assignment Submission

Answer the following questions:

What does HTML stand for?

Hyper Transfer Markup Language Hyper Text Markup Language High Tech Modern Language Hyperlink and Text Management Language

Which CSS property is used to change the text color of an element?

background-color color font-color text-color

Which property is used to set the background color in CSS?

color background-color bg bg-color

Which CSS property controls the text size?

font-size text-size size text-style

Which CSS property is used to create space inside the border of an element?

margin padding spacing border-spacing

Which CSS property is used to add space outside an element's border?

margin padding spacing border-spacing

What does the 'position: relative' property do in CSS?

Positions the element relative to the viewport Positions the element relative to its normal position Fixes the element at a specific position Positions the element relative to another element

What does 'position: fixed' do in CSS?

Fixes the element to its parent Fixes the element relative to the viewport Makes the element sticky Moves the element randomly

Which CSS property is used to align items in a flex container along the main axis?

justify-content align-items flex-align content-align

Which property is used to control the wrapping of items in a flex container?

flex-wrap wrap-items item-wrap container-wrap

Which property is used to specify the order of flex items?

flex-order item-order order arrange

Which CSS property controls the space inside an element's border?

margin padding spacing border-spacing

What property is used to control the space outside an element's border?

padding margin border outline

Which CSS property specifies the alignment of items inside a flex container along the main axis?

align-items justify-content align-self position

What value of 'justify-content' aligns items to the center of the flex container?

center flex-start flex-end space-between

Which property defines how a flex item grows relative to others?

flex-grow flex-shrink flex-basis order

What does the 'align-items' property do in a flex container?

Aligns items horizontally Aligns items vertically Adds margin to items Controls the item growth

Which property is used to set the direction of flex items in a flex container?

flex-flow flex-direction align-content justify-content

Which CSS property controls the size of a flex item before the remaining space is distributed?

flex-basis flex-grow flex-shrink justify-content

What is the default value of the 'flex-direction' property?

row column row-reverse column-reverse

Which property is used to prevent flex items from shrinking?

flex-shrink: 0; flex-grow: 1; align-items: stretch; justify-content: center;

What is the purpose of the 'order' property in a flexbox layout?

Controls the growth of items Specifies the arrangement of flex items Aligns items horizontally Adds space between items

Which CSS property is used to align multiple flex lines along the cross axis?

align-items justify-content align-content flex-wrap

Which value of 'align-items' stretches items to fill the container's height?

stretch center baseline flex-start

What is the purpose of the 'flex-wrap' property?

It defines the main axis direction It determines whether items should wrap to the next line It controls item alignment on the cross axis It adjusts the space between items