에서 비주얼 스튜디오 , 나는이 경고를보고 있어요 :
- 유효성 검사 (HTML 5) : ‘cellpadding’속성이 ‘table’요소의 올바른 속성이 아닙니다.
- 유효성 검사 (HTML 5) : ‘cellspacing’속성이 ‘table’요소의 올바른 속성이 아닙니다.
- 유효성 검사 (HTML 5) : ‘valign’특성이 ‘td’요소의 올바른 특성이 아닙니다.
- 유효성 검사 (HTML 5) : ‘align’특성이 ‘td’요소의 유효한 특성이 아닙니다.
HTML5 에서 유효한 속성이 아닌 경우 CSS에서 대체하는 것은 무엇입니까?
답변
/* cellpadding */
th, td { padding: 5px; }
/* cellspacing */
table { border-collapse: separate; border-spacing: 5px; } /* cellspacing="5" */
table { border-collapse: collapse; border-spacing: 0; } /* cellspacing="0" */
/* valign */
th, td { vertical-align: top; }
/* align (center) */
table { margin: 0 auto; }
답변
문제를 해결해야합니다.
td {
/* <http://www.w3.org/wiki/CSS/Properties/text-align>
* left, right, center, justify, inherit
*/
text-align: center;
/* <http://www.w3.org/wiki/CSS/Properties/vertical-align>
* baseline, sub, super, top, text-top, middle,
* bottom, text-bottom, length, or a value in percentage
*/
vertical-align: top;
}
답변
특정 테이블
<table style="border-collapse: separate; border-spacing: 10px;" >
<tr>
<td>Hi</td>
<td>Hello</td>
<tr/>
<tr>
<td>Hola</td>
<td>Oi!</td>
<tr/>
</table>
답변
또는 특정 테이블에 사용할 수 있습니다
<table style="width:1000px; height:100px;">
<tr>
<td align="center" valign="top">Text</td> //Remove it
<td class="tableFormatter">Text></td>
</tr>
</table>
이 CSS를 외부 파일에 추가
.tableFormatter
{
width:100%;
vertical-align:top;
text-align:center;
}