What is the purpose of floats in CSS for layout design?
A). Allow elements to be positioned to the left or right of their container, with other content flowing around them
B). Create evenly spaced items within a container
C). Create a grid structure for layout
D). Style the background of elements
How can you create a gap between grid items in a CSS Grid layout?
A). grid-gap
B). gap
C). grid-margin
D). margin-gap
Which property is commonly used with floats to clear their effect and prevent other content from wrapping around them?
A). clear
B). float-clear
C). wrap
D). clearfix
In CSS Grid, which property is used to define the size of rows within a grid layout?
A). grid-template-rows
B). grid-rows
C). row-size
D). grid-size
In flexbox, which property is used to align items along the main axis?
A). justify-content
B). align-items
C). flex-align
D). main-align
What is the primary difference between flexbox and grid in CSS layout design?
A). Flexbox is primarily used for aligning and distributing items along a single axis, while Grid allows for precise control over rows and columns in a grid structure
B). Flexbox is suitable for creating complex and responsive layouts, while Grid is ideal for creating evenly spaced items within a container
C). Flexbox is used for creating flexible layouts, while Grid is used for creating fixed layouts
D). Flexbox is older and less flexible compared to Grid
In flexbox, which property is used to control the direction in which flex items are placed within a flex container?
A). flex-direction
B). item-direction
C). flex-align
D). container-direction
How can you ensure that items in a flex container have equal space between them, regardless of their content size?
A). justify-content: space-between;
B). align-items: space-between;
C). flex-space: equal;
D). align-space: equal;
How can you center align items along both the main and cross axis in a flexbox layout?
A). align-items: center; justify-content: center;
B). align-items: center; justify-items: center;
C). align-items: center; align-content: center;
D). justify-content: center; justify-items: center;
Which CSS technique is suitable for creating complex and responsive layouts with aligned and evenly spaced items?
A). Flexbox
B). Floats
C). Grid
D). All of the above