Skip to content

Instantly share code, notes, and snippets.

@diguinhorocks
Created February 17, 2012 17:54
Show Gist options
  • Save diguinhorocks/1854619 to your computer and use it in GitHub Desktop.
Save diguinhorocks/1854619 to your computer and use it in GitHub Desktop.
Formulaŕio HTML com Borda
<!doctype html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<form class="form arredondada" action="" method="POST">
<input type="text" name="teste" />
<input type="submit" value=" Salvar " />
</form>
</body>
</html>
.form{width: 300px; padding: 30px; border: 1px solid #000;}
.arredondada{-moz-border-radius: 12px; -webkit-border-radius: 12px; border-radius: 12px; -o-border-radius: 12px;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment