<html>
<head><title>CSS – Type selectors</title>
<style type="text/css">
p.fp { text-indent: 2em;margin: 1em; color: red; }
h1.fp {color: orange; font-face: arial; font-size:
20pt; font-weight: bold;}
p { margin: 1em; color: blue; }
</style><body>
<h1 class="fp">Test Page</h1>
<p class="fp">Thanks for visiting.</p>
<p>Hey there.</p>
</body></html>
用户评论