Knowledge check: Debugging
In a CSS selector such as 'div .alpha>p', what will be the element or class that will be read first by the CSS compiler?
p
.alpha
div
the entire selector is read and interpreted
What is the default behavior of CSS when it encounters an incompl...