I am playing around with jQuery and thought I would build a little css generator.
Currently you can see that when you make a change it just appends the change, I would like it so it in a sense updates the css output instead of adding to it. so instead of..
textarea{
font-size: 18px;
}textarea{
color: green;
}
it would be:
textarea{
font-size: 18px;
color: green;
}
This is what I have rocking so far.
UPDATED
just a proof of concept, but you can get the idea…