<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Button</title>
<style>
span.button {
background:url(http://img585.imageshack.us/img585/9379/buttonbg.gif) no-repeat top right;
display:inline-block;
padding-right: 9px; /* sliding doors padding */
cursor:pointer;
}
span.button span
{
padding:0;
margin:0;
}
span.button input.form_button {
background:url(http://img585.imageshack.us/img585/9379/buttonbg.gif) no-repeat left top;
padding-left:8px;
padding-right:2px;
text-align:center;
line-height:26px;
height:29px;
margin-left:0px; /* fixes margin issue with safari and chrome. no an issue for ie or ff. */
display:inline-block;
}
input.form_button {
cursor:pointer;
font-weight:bold;
display:inline-block;
border:0;
font-size:14px;
color:#FFFFFF;
width: auto; /* fixes width issue for ie browsers */
overflow:visible; /* fixes width issue for ie browsers */
}
span.button:hover input.form_button {
background-position:left -39px;
color:#FFFFFF;
}
span.button:active input.form_button {
background-position:left -78px;
color:#FFFFFF;
}
.button:hover {
background-position:right -39px;
}
.button:hover span {
background-position:left -39px;
}
.button:active {
background-position:right -78px;
}
.button:active span {
background-position:left -78px;
}
input.form_button[type="submit"]::focus-inner, input.form_button[type="button"]::focus-inner {
border : 0px;
}
input.form_button[type="submit"]:focus, input.form_button[type="button"]:focus{
outline : none;
}
</style>
</head>
<body>
<span class="button"><span><input type="submit" class="form_button" value="Testing Button"></span></span>
</body>
</html>
Output
This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account
Dismiss xKeyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |