jsp中的警告:Attribute (cellpadding) is obsolete. Its use is discouraged in HTML5 documents.
如意编程网
收集整理的这篇文章主要介绍了
jsp中的警告:Attribute (cellpadding) is obsolete. Its use is discouraged in HTML5 documents.
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
Attribute (width) is obsolete. Its use is discouraged in HTML5 documents.
属性(宽度)已过时。 在HTML5文档中不鼓励使用它。
Attribute (cellpadding) is obsolete. Its use is discouraged in HTML5 documents.
属性(单元格内文字与边框的距离)已过时。 在HTML5文档中不鼓励使用它。
HTML5 不支持<table> cellpadding属性。请使用 CSS 代替。
cellpadding 属性规定单元边沿与单元内容之间的空间,以像素计。
这不是错误,只是警告,不影响题主写的页面执行的。
原因是 HTML5 已经废弃了,如下:
<div width="500px"></div>
这种直接把 width、height、cellpadding 等之类的样式属性直接写在 HTML 标签里的做法,而是需要统一写在 style 里(或者定义CSS中),如下:
<div style="width: 500px;"></div>
总结
以上是如意编程网为你收集整理的jsp中的警告:Attribute (cellpadding) is obsolete. Its use is discouraged in HTML5 documents.的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: 浅谈HTML文档模式
- 下一篇: 简述HTML DOM及其节点分类