ashes999
ashes999

Reputation: 10163

Tool to Dynamically Edit CSS

I recall hearing about a tool that allows you to dynamically edit CSS when viewing a page. This is primarily useful for developers, and I'm not looking to apply those changes later.

Does this tool exist? I'm looking for something that works with either FireFox or Chrome.

Upvotes: 1

Views: 405

Answers (3)

Matt Ball
Matt Ball

Reputation: 359816

  • Firefox: Firebug.
  • Chrome: dev tools are built in:

enter image description here

enter image description here

Upvotes: 4

Richard H
Richard H

Reputation: 39055

Yes. You can edit css dynamically with Firebug addon for Firefox. You can do the same with the latest version of Opera (is built in) and also I imagine Chrome too.

Infact with these tools you can edit not just css but html and the rendered DOM too. Plus you can run js too.

Upvotes: 0

Legycsapo
Legycsapo

Reputation: 315

This is the firebug extension for Firefox !

http://getfirebug.com/

Upvotes: 0

Related Questions