我有 html 代码,可以打印 html 表中的所有帖子。
但是,如果没有帖子,那么我需要打印一个错误No posts found
。
现在关注错误消息
我正在尝试在表格中央打印错误消息。
<style>
table{border-collapse:collapse}
td{background-color:white;padding:10px}
.first_tr td{background-color:#f1f7f7 !important;border-bottom:1px red solid}
</style>
<table border="0" width="400px">
<tr class="first_tr"><td width="20%">POST ID</td><td width="79%">POST TITLE</td></tr>
<tr><td>No posts found</td></tr>
</table>
这是一个例子:http: //jsfiddle.net/9UhTd/
错误消息显示在表格的开头,但我试图将其居中!