Created
May 24, 2012 07:53
-
-
Save dziudek/2780098 to your computer and use it in GitHub Desktop.
Button double border styling without any additional containers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Button double border styling without any additional containers. | |
*/ | |
.btn { | |
display: inline-block; | |
background: #aaa; | |
background-clip: content-box; | |
border: 2px solid #aaa; | |
border-radius: 3px; | |
line-height: 30px; | |
padding: 2px; | |
min-width: 100px; | |
text-align: center; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="btn"> Test button </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment