Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
![example of textbox i want![][1]][1]
EXAPMLE OF textbox
hi to all
i have some problem with Table
when i create tage
i want like example below.
i have some problem
1. when i enter
CNIC-NO
--
they cannot dispplay same line
Note. i have only 2 coloumns in my table.
plz tell me how i draw this text box like example attached below.
[1]: http://i.stack.imgur.com/ulpZm.png "table
"
you can simply do this
<td>
<input type="text" style="display: inline-block" />
<input type="text" style="display: inline-block" />
<input type="text" style="display: inline-block" />
</td>
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
How can I create something similar to the image using only HTML5?
__________
s m l xl
Thank you!
This is simplest solution.
<div>
<input type="range" id="volume" name="volume" min="0" max="3" step="1">
</div>
<div>
<span style="display:inline-block; width:35px">S</span>
<span style="display:inline-block; width:35px">M</span>
<span style="display:inline-block; width:35px">L</span>
<span style="display:inline-block; width:35px">XL</span>
</div>
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I have this html block:
<div class="form-group flex-auto" >
<input maxlength="2" class="form-control format__itemForm" type="text" ng-model="$ctrl.codigoPaisTelefono" prevent-keys="{{ $ctrl.caracteresExcluidos }}"
required oninput="this.value== 0? this.value == '' :void(0)"
>
</div>
I need to prevent users to type 0 as the first character, I tried oninput method above, but didn't work.
Any clue?
Something like this maybe?
function validate(element){
var val = element.value;
if(val.charAt(0)=='0'){
element.value=val.substring(1, val.length);
}
}
<input oninput="validate(this)">
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I'm making a form and I want to surround a group of inputs with a line as shown in the picture below:
This is my code
<div class="selectMov" >
<p>Tipo de Movimiento</p>
<input type="radio" class="optTiMov" value=1> Entrada<br>
<input type="radio" class="optTiMov" value=2> Salida<br>
</div>
I've seen this kind of element before, but I don't what it is called or how to make it
A simple way is to use fieldset. Here is a similar example
fieldset {
border 1px solid #ddd;
border-radius: 6px;
}
<fieldset>
<legend>Personalia:</legend>
Name: <input type="text"><br>
Email: <input type="text"><br>
</fieldset>
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
<form action="quiz.cfm" method="get">
<fieldset>
<legend>Your Details</legend>
<div>
<label for="What is the length of a banana?">What is the length of a banana?:</label><br>
<input type="text" name="What is the length of a banana?" value="" maxlength="100" /><br>
</div>
<div>
<input type="submit" value="Submit" />
</div>
</fieldset>
</form>
Hello.
That is the code I have so far.
I want to know what I am supposed to do to actually get the answers, send them to my e-mail for example.
Thank you in advance,
Iluvpresident
The code below should be incorporated into the "quiz.cfm" page.
<cfmail
from="fromemailaddress"
to="toEmailAddress"
subject="A new form entry has been submitted">
A customer inquiry was posted to our website:
Text : #Form.answer#
</cfmail>
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
This is my sample html page where i'm using anchor tag inside but i need any alternate method instead of anchor tag,could anybody tell me.
<body>
<table><tr><td>
<a href="http://www.w3schools.com">Visit W3Schools.com!
<div></div>
</a>
</td></tr>
</table>
</body>
Thanks for your help.
Maybe you could use:
<form method="GET" action="foo.html">
<input type="submit" />
</form>
The difference between those two methods: <form method="link" > or <a>? What's the difference?