<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<!-- id选择器:给要设置样式的元素的id属性赋值,就可以在style标签中通过id
操作到具体的某个元素了。id一般是唯一的,不能有重复的值。-->
<style type="text/css">
#p1
{
background-color:Green;
font-size:xx-large;
}
#tt1
{
background-color:Blue;
font-size:large;
}
</style>
</head>
<body>
<p id="p1">今天天气好晴朗,出处好风光</p>
<p id="p1">今天天气好晴朗,出处好风光</p>
<tt id="tt1">今天天气好晴朗,出处好风光</tt><br/>
<tt id="tt1">今天天气好晴朗,出处好风光</tt><br/>
</body>
</html>
页面效果: