wyc
wyc

Reputation: 55273

Is there anyway of modifying the CSS in the Webkit's CSS inspector?

Is there anyway of modifying the CSS in the Webkit's CSS inspector, and seeing the results in real time (just like Firebug)?

I'm using Google Chrome

(I tried Firebug Lite for Google Chrome but it doesn't work)

Upvotes: 0

Views: 154

Answers (2)

Allan Kimmer Jensen
Allan Kimmer Jensen

Reputation: 4389

Just press Ctrl + Shift + J or F12 And you will get a nice Developer Window. (Same as Daniel Vassallo shows but this is the keyboard shortcut).

Now click "Elements" or the magnifying glass and inspect elements.

enter image description here

Upvotes: -1

Daniel Vassallo
Daniel Vassallo

Reputation: 344301

Just right click anywhere in Chrome and choose "Inspect Element".

You will be able to do CSS inspection and even change the styles on the fly.

Chrome Inspect Element http://img502.imageshack.us/img502/5921/inspect.png

Upvotes: 2

Related Questions