Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
p
{
color:blue;
text-align:center;
}
.marked
{
background-color:red;
}
.marked p
{
color:white;
}
</style>
</head>
<body>
<p>This paragraph has blue text, and is center aligned.</p>
<div class="marked">
This isn't a paragraph, therefore has no blue text nor alignment.
</div>
<div class="marked">
<p>p elements inside a "marked" classed element keeps the alignment style, but has a different text color.</p>
</div>
</body>
</html>