欢迎访问 如意编程网!

如意编程网

当前位置: 首页 > 前端技术 > HTML >内容正文

HTML

jsp中的警告:Attribute (cellpadding) is obsolete. Its use is discouraged in HTML5 documents.

发布时间:2022/11/16 HTML 14 老码农
如意编程网 收集整理的这篇文章主要介绍了 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.的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得如意编程网网站内容还不错,欢迎将如意编程网推荐给好友。