Last active
August 24, 2017 21:30
-
-
Save digitarald/462312bed5e78242ce3fbfbb9bd23f7c to your computer and use it in GitHub Desktop.
Console log line-height issue
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
<script> | |
console.log('%cline-height: 1.5', 'line-height: 1.5; background-color: red; color: white') | |
console.log('%cline-height: 1.5em', 'line-height: 1.5em; background-color: red; color: white') | |
console.log('%cline-height: 50px', 'line-height: 50px; background-color: red; color: white') | |
</script> | |
See DevTools Console |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment