x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
    h1 + p {
5
        font-size: 1.4em;
6
        color: gray;
7
    }
8
</style>
9
10
<h1>Adjacent sibling combinator example</h1>
11
<p>This is the first paragraph of the article. Sometimes you might want this paragraph styled differently to the rest of the article.</p>
12
<p>This is the rest of the article. This is styled in the normal way for the article content (i.e. it isn't styled the same as the first paragraph). </p>