2012-11-23 3 views
0

유효성 검사 중에이 <UL> 오류가 발생하는 곳을 찾기 위해 고심하고 있습니다. 내가 아직 읽지 않은 <UL> 태그를 가지고 있다고 말하는 것입니다 ...이 태그의 위치에 대해 분실 한 사람이 나를 도와 줄 수 있습니다. 바로이UL 태그가 닫히지 않았 음

Line 67, Column 5: end tag for "ul" which is not finished

</ul>

Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p> . Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li> ; <dl> requires <dt> and <dd>), and so on.

+0

이 나를 잘 처리 함 : http://validator.w3.org/check?uri=http%3A%2F%2Fwww.mammacoil.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0 – Matthew

+0

흠이 있어야 함 금발의 순간을 보내고있다 :) –

+0

@Matthew 그 링크는'Line 67, Column 5 : "ul"이 끝나지 않은 끝 태그를 보여줍니다. – Curt

답변

3

답 : For instance, in HTML the element must contain a child element, ... <ul> and <ol> require <li>...

당신은 빈이

http://www.mammacoil.com/

감사 커스티

이 오류입니다코드 (사실 정확하게)가 유효성 검사기가 어디에 있는지 알려주고 있으며 이는 불법입니다.

관련 문제