New Google Chrome: How to avoid undesired newlines when copying CSS?

Viewed 176

With the new version of Google Chrome, I assume they added some "move left and right to change value" feature to the CSS console.

After update, when I tried to copy paste to my file I got a super broken formatting.

Quick example:

    max-width: 626
px
;

Anyone else noticed this change? Any idea how to restore old version of this or just turn it off?

1 Answers

yes, it's a drag..

you can work around this by using the context menu dedicated for that; right-click the desired rule in the styles tab, and choose copy all declarations.

here's a screenshot of that menu on this page:

enter image description here

Related