xxxxxxxxxx
// Use jQuery to get the CSS styles of an element by its ID
var styles = $('#elementID').css();
// Print the CSS styles to the console
console.log(styles);
xxxxxxxxxx
$("selector").css("property", "value");
// Example:
$("div").css("background-color", "red");
xxxxxxxxxx
$("selector").css("property", "value");
// Example:
$("div").css("background-color", "red");