Hello all, I have an important question about my web app I'm making. It's going to be a checklist app and I will have textbox's for the fields. Anyways, I need the textbox's to stretch across the screen so that when the iPhone is turned in different directions, it will stretch to fit the screen with a 12px margin on the right. Here's my current code:
Thank you in advance.
HTML:
<input type="checkbox" onChange = "enableDisableTextField(this)" class="check" /><input type="text" name="i[]" style="font-family:Marker Felt;width:auto;height:20px;font-size:14px;border:1px solid #999999;background-color:white;padding:1px;color:#333333;margin-right:12px;"/>
Thank you in advance.