In the controlgroup container, I have included the data-type="horizontal" attribute. This container contains a select menu and a plus icon, giving the user the option to select an existing category or add a new one. I am looking to position the "+" icon in the top right corner, with the select box occupying the remaining space. Below is the code:
<div data-role="controlgroup" data-type="horizontal">
<select name="select-choice-1" id="select-choice-1">
<option value="Select Category">Select Category</option>
</select>
<a href="" data-role="button" data-icon="plus" data-iconpos="notext">Add</a>
</div>
Attached is a screenshot of how the above code currently appears. Is there a way to ensure that the "+" symbol is fixed in the top right margin at its default icon size?