I have a codepen here - https://codepen.io/ttmtsimon/pen/jadyWW?editors=1100
I have a simple nav style layout, with links and a select menu.
On smaller screen I want the select menu to sit on it's own on the bottom and be 100% width
I have this worjing using flex and flex order and basis.
My problen is IE, the layput doesn't work at all (I dont have access to IE, but I've been told)
I think it's the way IE handles the basis.
Is there a way to fix this layout to work in IE using flex.
<section class="nav-bar">
<div class='o-container '>
<div class='nav-bar__items'>
<div class="nav-bar__items-linkOne">
<div class="">
<span>Link One</span>
</div>
</div>
<div class="nav-bar__items-linkTwo">
<span>Link Two</span>
</div>
<div class="nav-bar__items-linkThree">
<span class="o-svg-text__text-left">Link Three</span>
</div>
<div class="nav-bar__items-select">
<div>
<span>Select: </span>
<select>
<option>Select Option here</option>
<option>Select Option here</option>
<option>Select Option here</option>
<option>Select Option here</option>
<option>Select Option here</option>
<option>Select Option here</option>
<option>Select Option here</option>
</select>
</div>
</div>
</div>
</div>
</section>