Click to See Complete Forum and Search --> : form border help!!!
kung-fu-monkey
04-25-2003, 05:30 AM
i got forms on my page i.e. lists and so on i was wondering whether there was any code where you can take away the border! such as when you have a Iframe you set the style frameborder="0" and that takes it away i have tried this with my forms and it didnt work can anyone help?? is there something like this i can use?
AdamGundry
04-25-2003, 05:53 AM
Huh? Forms don't have borders. Are you sure this is a <form> object, or something else? Is your editor rendering the border, but it does not appear in a normal browser?
Adam :confused:
Charles
04-25-2003, 06:04 AM
I suspect that it's the form elements that the enquirer wishes to see naked.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
input {border-width:0px}
</style>
<form action="">
<div>
<label>Some Text<br>
<input type="text">
</label><br>
<input type="submit">
<div>
</form>
kung-fu-monkey
04-25-2003, 06:26 AM
i actually think its more of a select list but im afraid that code didnt work for me can anyone else help me???