Matching width of "text" and "select" inputs?
Hi,
For some reason, the SELECT boxes are set at 100% width (in their respective block), yet the TEXT ones are a lot smaller. Is there anything I can do to make them match up width wise? It just makes the form look messy how it is now :( Here is an example of what I'm using:
- <div data-role="fieldcontain">
- <label for="RealName">Real Name:</label>
- <input type="text" name="RealName" id="RealName" value="REAL_NAME" placeholder="Your Real Name"/>
- </div>
-
- <div data-role="fieldcontain">
- <label for="Language" class="select">Language:</label>
- <select name="Language" id="Language">
- <option value="en">English</option>
- <option value="fr">Français</option>
- </select>
- </div>
TIA :)
Andy