Which of the following CSS properties is NOT inherited by default by child elements? For example, if a parent u003Cdivu003E sets a value, which property will NOT automatically apply to its children?
Given two selectors with the same specificity, such as '.btn.primary' and '.btn.success', which principle determines which rule is applied if both set the 'background-color' property?
If the root element (u003Chtmlu003E) has a font-size of 20px, and a u003Cdivu003E has 'font-size: 2rem;' while a u003Cspanu003E inside it has 'font-size: 2em;', what is the computed font-size for the u003Cspanu003E in pixels?
If two block-level u003Cdivu003E elements each have 'width: 50%;' and you add 'padding: 10px;' to both, what will typically happen to their layout in the default box model ('box-sizing: content-box')?
Which of the following CSS selectors has the highest specificity? Consider: A) '#nav .item', B) '.menu u003E .item', C) 'li.item', D) 'ul li', E) '* .item'.