Contents |
A containing element was closed before one of the elements it contains was finished. This can occur if a non-optional closing tag is omitted, or if the contained element is missing a required child element.
![]() | <table> <tr> |
![]() | <table> <tr> |
Notice that the closing "tr" is incorrect.
![]() | <html> <head> |
![]() | <html> <head> |
Notice that the <title> element is required.
Complete the contained element before closing the container.