Hello everyone, I am attempting to align a textarea, an image upload button, and a select dropdown all in the same line as shown in the image below. https://i.sstatic.net/8Ws0m.png
Here is my current code:
<div class="col-md-10 div_qtype">
<textarea name="question_text" class="question_text"></textarea>
<input name="Select File" type="file" />
<select id='question_options'>
<option value="0">Multiple Choice</option>
<option value="1">Check Box<option>
<option value="2">Passing on to a client</option>
</select>
</div>
However, my design currently looks like this:
https://i.sstatic.net/XTEMP.png
Could anyone provide guidance on how to achieve the desired design? Thanks in advance.