Wednesday, 2 November 2016

Form with rounded Border

Hi All,

See this code to put rounded border to forms.

---------------------------------------------------------------------
<html>
<head>
<style>
fieldset {
  -moz-border-radius:5px;
  border-radius: 5px;
  -webkit-border-radius: 5px; //edit :D
 
}
</style>
</head>
<body>
<fieldset  style="width:250px">
<form action=HUPModify.php method=post>
<pre>
New Reference Number <input name=nrefno>
Total References     <input name=tref>
<input type=submit value="Change file">
</pre>
</form>
</fieldset>
</body>
</html>

---------------------------------------------------------------------