-
-
Save SelenIT/a19afa316615ed91242fc2fa19c11df5 to your computer and use it in GitHub Desktop.
broken inlined button, FF
This file contains 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
/* broken inlined button, FF */ | |
.btn { | |
all: initial; | |
background: red; | |
-webkit-appearance: none; | |
-moz-appearance: none; | |
appearance: none; | |
} | |
/* fix for 140562 https://bugzilla.mozilla.org/show_bug.cgi?id=140562 */ | |
.btn::-moz-focus-inner { all: initial; } | |
.btn.ib { display: inline-block; } | |
p { width: 100px; } |
This file contains 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
<p>Here is <a class="btn">Button with long text</a></p> | |
<p>Here is <button class="btn">Button with long text</button></p> | |
<p>Here is <button class="btn ib">Button with long text</button></p> |
This file contains 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":"1","prefixfree":"","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment