Skip to content

Instantly share code, notes, and snippets.

@easonhan007
Created May 12, 2013 09:14
Show Gist options
  • Save easonhan007/5562923 to your computer and use it in GitHub Desktop.
Save easonhan007/5562923 to your computer and use it in GitHub Desktop.
最基本的css选择器
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>basic css selector</title>
<style>
p {color: blue}
</style>
</head>
<body>
<p>昔人已乘黄鹤去,此地空余黄鹤楼,黄鹤一去不复返,白云千载空悠悠。</p>
<p>晴川历历汉阳树,芳草萋萋鹦鹉洲。日暮乡关何处是,烟波江上使人愁。</p>
<p>BLUE</p>
<span>Black</span>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment