.toolbar was meant to lay its buttons out in a flex row, but display is set to block, so they stack. Fix the display value.
Acceptance criteria
- 1.Change display to flex on .toolbar.
.toolbar was meant to lay its buttons out in a flex row, but display is set to block, so they stack. Fix the display value.
<div class="toolbar"> <button>Bold</button> <button>Italic</button> <button>Underline</button> </div>
Output ready when you are
Press Run to render your code, or Submit to validate your solution.