在 Visual Studio 中,我看到以下警告:
如果它们不是 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; }
关于html - 什么能代替cellpadding,cellspacing,valign和HTML5表中的align?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6048913/