Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はナビで ul li を使用していますが、掲示板を作成するためにも使用しています。でもulli要素は分けたい。nav ul li {} や掲示板 ul li{} のような簡単な方法はありますか
どちらにも CSS クラスを定義できます。例えば:
.nav { /*some css*/ } .notice_board { /*some css*/ }
次に、それらを目的の HTML 要素にリンクします
<ul class="nav"> <li>...</li> ... <li>...</li> </ul>
ナビゲーション用と
<ul class="notice_board"> <li>...</li> ... <li>...</li> </ul>
掲示板用。