我想在Wordpress网站中隐藏表格的表格边框。我已经想通了,我的主题是将表格边框设置为标准并删除相应的代码行。
我现在的问题是:桌边框仍然可见!你们有人帮我解决这个问题吗?
以下是该网站的链接:http://studifutter.com/2732-2/
非常感谢您提前。
祝你好运, 特立独行
根据要求,您可以在此处查看我当前的代码:
<table style="border-color: #ffffff; background-color: #ffffff;" border="none">
<tbody>
<tr>
<td>
<h4>Über den Autor</h4>
</td>
<td></td>
</tr>
<tr>
<td style="text-align: justify;"><strong>Vorname Nachname</strong> tempor cum
soluta nobis eleifend option congue
nihil imperdiet doming id quod
mazim placerat facer possim assum.
Lorem ipsum dolor sit amet,
consectetuer adipiscing elit, sed diam
nonummy nibh euismod. soluta nobis
eleifend option liber tempor cum
solute.</td>
<td><img class=" wp-image-2548" src="http://studifutter.com/wp-content/uploads/2016/01/Maske-300x225.jpg" alt="Häufiges Phänomen in Asien: Person mit Atemschutz. (Bild 2)" width="251" height="188" /></td>
</tr>
</tbody>
</table>
答案 0 :(得分:2)
如果您需要隐藏表格边框,请使用:
.entry-content table {
border: 0px;
}
如果您需要隐藏表格的TR边框,请使用:
.entry-content table tr {
border: 0px;
}
要隐藏TD边框,请使用:
.entry-content table > thead > tr > th,
.entry-content table > tbody > tr > th,
.entry-content table > tfoot > tr > th,
.entry-content table > thead > tr > td,
.entry-content table > tbody > tr > td,
.entry-content table > tfoot > tr > td {
border: 0px;
}
答案 1 :(得分:1)
在
<div class="clearfix entry-content">
你有table
。
要删除其边框,您可以将其添加到底部的CSS文件中:
.entry-content table tr{
border: none;
}