728x90
※ 발생한 에러
Error: Table column 3 established by element col has no cells beginning in it.
※ 에러 발생 소스
<colgroup>↩
<col style="width:140px">↩
<col style="width:auto">↩
<col style="width:140px">↩
<col style="width:140px">↩
</colgroup>↩
<tbody>↩
<tr>↩
<th scope="row">제목</th>↩
<td colspan="3">웹표준 에러 발생!</td>↩
</tr>↩
<tr>↩
<th scope="row">등록일</th>↩
<td colspan="3">2021.07.09.</td>↩
</tr>↩
</tbody>
※ 수정 소스
<colgroup>↩
<col style="width:140px">↩
<col style="width:auto">↩
</colgroup>↩
<tbody>↩
<tr>↩
<th scope="row">제목</th>↩
<td>웹표준 에러 발생!</td>↩
</tr>↩
<tr>↩
<th scope="row">등록일</th>↩
<td>2021.07.09.</td>↩
</tr>↩
</tbody>
※ 원인 설명
- 원인은 colspan에 있었는데 colgroup의 col 개수와 별개로 tr 내부의 td 개수가 다수인게 최소 한 개는 있어야 한다.
728x90
'Dev History > Error Log' 카테고리의 다른 글
nohup : redirecting stderr to stdout (0) | 2022.10.04 |
---|---|
웹 표준 ] Error: CSS: Parse Error (0) | 2022.04.01 |
./ibdata1 can't be opened in read-write mode (0) | 2022.03.23 |
Got error -1 from storage engine (0) | 2022.03.23 |
java.sql.SQLException: ORA-00600: 내부 오류 코드, 인수: [qctcte1], [0], [], [], [], [], [], [], [], [], [], [] (0) | 2021.10.21 |