I have a span (.time-pretext) inside a div inside a flexbox a, like this:
<a class="option-container option-edit-time" href="#">
<div class="option-icon"><canvas id="time-canvas" width="128" height="128"></canvas></div>
<div class="option-text"><span class="time-pretext">I have</span>60 minutes</div>
</a>
.option-text here gets flex-direction: column, and when I give it that property, the span will only take block display options (block or -webkit-box) and no inline ones (inline-block). Why?
Incidentally, it works fine in the original flexbox implementation (display: -webkit-box). Only in the newest implementation (display: flex) does this come up.