xxxxxxxxxx
var font-size = $('p').css('font-size');
console.log(font-size);
xxxxxxxxxx
//if you have a single property, your getting the value
console.log($('h2').css('color'));
//if you have two properties, your setting the value
$('h2').css('color', 'red');