0

ドロップダウンメニューまたは親ナビゲーションバーの子アイテムの下部の丸みを帯びたコーナーを21テーマのワードプレスで取得する方法

#access ul ul a {
background: #F9F9F9;
border-bottom: 1px dotted #DDD;
 color: #444;
font-size: 13px;
font-weight: normal;
height: auto;
line-height: 1.4em;
padding: 10px 10px;
width: 168px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;`

このようにしておくと、すべてのドロップダウンメニュー項目に境界線が表示されます。最後の項目の境界線のみを登録しました

4

1 に答える 1

0

:last-childセレクターを使用します。CSS は次のようになります。

.menu-item:last-child a {
     border-bottom-right-radius: 10px;
     border-bottom-left-radius: 10px;
}

それが役に立ったことを願っています!

于 2012-08-18T18:35:47.400 に答える