HTML 中的 <footer> 标签有替代品吗?

Is there an alternative to the <footer> tag in HTML?

我看到 HTML5 支持 <footer> 标签。但我使用的是 XHTML 1.0,不支持此标签。

还有其他方法可以实现页脚吗?理想情况下,它只会在打印模式下显示在每一页的底部。

我试图找到页脚标签的替代品。但是没有用。

谢谢。

使用 div 标记和 class 页脚并定义不同的 css for media print and screen.

@media screen {
  .footer { visibility: hidden; }
}
@media print {
  .footer { visibility: visible; }
}