HTML/CSS class selector (for only p elements) Code For Website - Learn About Website | DaddyFile

0

You can also specify that only specific HTML elements should be affected by a class.
In the example below, only <p> elements with class="center" will be center-aligned.


Html Code:

<!DOCTYPE html>
<html>
<head>
<style>
p.center {
    text-align: center;
    color: red;
}
</style>
</head>
<body>

<h1 class="center">This heading will not be affected</h1>
<p class="center">This paragraph will be red and center-aligned.</p>

</body>
</html>





Html Code Result:

This heading will not be affected

This paragraph will be red and center-aligned.

Post a Comment

 
Top