【发布时间】:2020-05-28 19:00:33
【问题描述】:
额外的“绿色”部分来自哪里?
This is my nav bar The green portion
我怎样才能摆脱这个?
注意:当我将普通文本放在这里时,我得到了很好的垂直居中格式,但使用表格时却没有。
这是我的 html 结构。
<li class="nav-item">
<table class="table table-sm table-condensed table-borderless">
<tbody class="user-logout">
<tr>
<td class="text-light">Farhad Hossain</td>
<td rowspan="2">
<a href="{{ url_for('dashboard') }}">
<img src="{{ url_for('static', filename='profile_pics/'+current_user.trainer.picture) }}"
width="56" height="56" class="rounded-circle" alt="">
</a>
</td>
</tr>
<tr>
<td><a class="text-decoration-none text-warning" href="{{ url_for('logout') }}">Logout</a></td>
</tr>
</tbody>
</table>
</li>
有希望吗?
【问题讨论】:
标签: html css twitter-bootstrap navigation navbar