Playing with flex containers, I wanted to add some line breaks at specific positions.So I tried this:
.break { flex-basis: 100%; height: 0;}When I inserted <br class="break" />, then the line just continued, but when I inserted <span class="break" />, the a line-break was added.
Why is that?For browser compatibility I felt that using BR was preferable.