Skip to content

Instantly share code, notes, and snippets.

@lkdjiin
Created June 3, 2013 19:22
Show Gist options
  • Save lkdjiin/5700609 to your computer and use it in GitHub Desktop.
Save lkdjiin/5700609 to your computer and use it in GitHub Desktop.
input should behave like button in pure framework, this is not the case
<!DOCTYPE html>
<html lang='en'>
<head>
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
<meta charset='UTF-8'>
<title>Test</title>
<link href='http://yui.yahooapis.com/pure/0.1.0/pure-min.css' rel='stylesheet'>
</head>
<body>
<div class= "pure-g-r">
<div class= "pure-u-1">
<form class="pure-form">
<a class="pure-button pure-button-primary">Anchor</a>
<button class="pure-button pure-button-primary">Button</button>
<input type="submit" class="pure-button pure-button-primary" value="Input" />
</form>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment