Want to create a large text box for users to input data. But can not get the html to work. Is what I have put in below correct ??? :?
<input type="text" name="text_10" id="text_10" title="" size="150" rows="10" cols="10"
<input type="text" name="text_10" id="text_10" title="" size="150" rows="10" cols="10"
Hi MickeyP,
No. it isn't correct. The tab isn't closed and 'size' isn't a valid attribute. Please see here for the specification.
Bob
No. it isn't correct. The tab isn't closed and 'size' isn't a valid attribute. Please see here for the specification.
Bob
This is my completed code
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width:150px;">Description</label>
<input class="cf_inputbox required" maxlength="300" title="" id="text_10" name="text_10" type="text" textarea rows="4" cols="20"/>
I have also tried without success 😟
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width:150px;">Description</label>
<input class="cf_inputbox required" maxlength="300" title="" id="text_10" name="text_10" type="text" rows="4" cols="20"/>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width:150px;">Description</label>
<input class="cf_inputbox required" maxlength="300" title="" id="text_10" name="text_10" type="text" textarea rows="4" cols="20"/>
I have also tried without success 😟
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width:150px;">Description</label>
<input class="cf_inputbox required" maxlength="300" title="" id="text_10" name="text_10" type="text" rows="4" cols="20"/>
This topic is locked and no more replies can be posted.
