<!DOCTYPE html>
<html>
<head>
<style>
p.intro {
background-color: yellow;
}
</style>
</head>
<body>
<h1>.class 选择器实例</h1>
<div class="intro">
<p>我的名字是唐老鸭。</p>
<p>我住在鸭堡。</p>
</div>
<p>我最好的朋友是米老鼠。</p>
<p class="intro">我最好的朋友是米老鼠。</p>
</body>
</html>