我在列表上有一个左/右边框来创建分离效果。例如:Link1
| Link2
|...
我希望边框上的线条比对象的总高度短一点——可能是总高度的 50% 并且垂直居中。但是,它们是 100% 的高度。如何在边框上设置高度并将其垂直居中?
谢谢!
<ul class="nav pull-right" style="line-height:30px;">
<li class="dropdown pull-right" style="line-height:20px;border-left: 1px solid #e3e3e3;border-right: 1px solid #e3e3e3;">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
{% if notice_unseen_count %} <span class="badge badge-warning" style="line-height:15px;">{{ notice_unseen_count }}</span>{% else %}<span class="badge" style="line-height:15px;">0</span>{% endif %}
</a>
<ul class="dropdown-menu">
<li><a href="{% url messages_inbox %}">Inbox</a></li>
<li class="divider"></li>
<li><a href="{% url invitations %}">Invitations</a></li>
<li class="divider"></li>
<li><a href="{% url notification_notices %}">All Notifications</a></li>
</ul>
</li>