Use the css() method to add a pink background color to <p>. - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:css

Description

Use the css() method to add a pink background color to <p>.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("p").css("background-color", "pink");
});//  ww  w  .jav  a 2  s . c  om
</script>
</head>
<body>

<p>This is a paragraph.</p>

</body>
</html>

Related Tutorials