Is there a way to style a dropdown menu with the following properties:
width: 100%;
max-width: 440px;
I am planning to include 4 of these dropdowns in one CSS table row to ensure they fit horizontally on mobile phone portrait view. However, only the menu that drops down should have the specified width.
<div id="heroes-dropdown" class="ui dropdown">
<div class="text">Heroes</div>
<i class="dropdown icon"></i>
<div class="menu">
<a class="item"><i class="edit icon"></i> Edit Profile</a>
<a class="item"><i class="globe icon"></i> Choose Language</a>
<a class="item"><i class="settings icon"></i> Account Settings</a>
</div>
</div>