21.) Which CSS selector targets elements that are the direct children of another element?
22.) How can you select all elements except the last one in a list using CSS?
23.) What is the specificity of the following selector: body .container #content?
24.) Which CSS selector targets elements that are the nth child of their parent?
25.) How can you select elements that have a specific attribute with a value starting with a certain string?
26.) What is the specificity value of the following selector: div#content .paragraph?
27.) What is the specificity of the following CSS rule: #header .nav li.active?
28.) Which selector has higher specificity: .content or div.content?
29.) Which selector has higher specificity: #header .nav li.active or .nav li#active?