A unique ID should only be used once to avoid conflicts. If you want both menus to have the same CSS settings, you can use <div class="menu"/>
. If some settings are the same but others differ (such as position), you can use something like:
<div id="top-menu" class="menu" />
and
<div id="bottom-menu" class="menu" />
. This is a common practice where the ID controls the external position of an object while the class controls its inner layout, which may be shared with other similar components.
If you want to learn more about class and ID selectors, W3 Schools has a helpful guide at http://www.w3schools.com/css/css_id_class.asp
According to their explanation:
The id Selector
The id selector is used to specify a style for a single, unique
element.
The class Selector
The class selector is used to specify a style for a group of elements.
Unlike the id selector, the class selector is most often used on
several elements.
This allows you to set a particular style for many HTML elements with
the same class.