分離効果を作成するために、リストに左/右の境界線があります。例: 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>