Question 3: What attributes are used to create space between text lines?
line-spacing
line-height
spacing
letter-spacing
Question 4: How can I format the elements on the same row?
display: left;
display: inline;
display: horizontal;
There is no right answer
Question 5: If you want to create an interesting footer attached to the bottom of the user window (not just at the bottom of the page), what attributes would you use?
position and bottom
display and float
position and float
display and bottom
Question 6: What attributes are needed to install an image in the background?
image
background-image
background: image
image: background
Question 7: What is the valid CSS attribute used to place an element on the right side of its container?
display: right;
float-right: 0px;
display-right: 0px;
float: right;
Question 8: In a table, how to get the background color of alternating rows?
tr: even {background-color: #CCC;}
td: even {background-color: #CCC;}
td: nth-child (even) {background-color: #CCC;}
tr: nth-child (even) {background-color: #CCC;}
Question 9: What attributes would you use to change the border of the element?
border-size: 5px;
border: width: 5px;
border-width: 5px;
border: size: 5px;
Question 10: What attributes are used to change the display list type to Roman numerals instead of normal numbers?