I'm trying to eliminate the spacing between lines in console.log() output in Chromes Devtools console. With larger fonts this is not a problem, but I can't do it with very small fonts (Which is what I need).
Open Devtools and run the snippet:
console.log('%cTHIS IS A TEST\nTHIS IS A TEST\nTHIS IS A TEST', 'color: green; font-size: 7px;');
As you can see there's a large space between the lines. I've tried adding a line-height attribute but it just clips the top and bottom of the text, without changing the distance between the lines.
I've also tried negative padding\margin, it didn't do the trick.
Is there a way to get the lines to "touch" without clipping?