how to access the css property of an element in jquery and print it as string code example
Example 1: jquery modify style attribute
$('#yourElement').css('display', 'none');
Example 2: get css value jquery
var font-size = $('p').css('font-size');
console.log(font-size);