anybody knows how to hide border in HTML using Form or Input tag?
My Code as below:
<form name="timerform">
Your session will expired in
<input type="text" name="clock" size="7" value="5:00">
</form>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can also use
This is usefull when you have other input types, i.e.
type="submit", but IE < 8 doesn’t support type.Check this with type and this without type.
Update: Also you can use as follows
Updated Demo.