this is the css we do
width: 200px;
height: 100px;
background-color: #f00;
and when we want to give no-more-use of the css we could add just a slash or anything that css doesn't understand but all other css works
widt/h: 200px;
height: 100px;
background-color: #f00;
but I wanted to do it in jquery like marginLef/t in jquery which didn't work anymore all other params.
sample jquery
<script>
$(document).ready(function(){
$("button").click(function(){
$("h2").animate({backgroundColor: '#00f', width: '-=150px', marginLef/t: '50px'});
});
});
</script>
/* comments are your friends */