I have an application with a simple menu that will contain 3 main elements. Title element, search entry element, and settings element. I define the menu like this:
<div class="ui menu">
<div class="left header item">
</div>
<div class="item">
<div class="ui icon input">
<input placeholder="Search..." type="text">
<i class="search link icon"></i>
</div>
</div>
<div class="right">
</div>
</div>
The problem is that I want the middle element to take up as much space as possible (i.e. from the first element to the last element). Is there a property that allows an element to take up as much space as possible.
source
share