梦之都
CSS教程
,
CSS ID选择符
示例
梦之都CSS 绿色字体
梦之都CSS 红色字体
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS ID选择符示例</title> <style type="text/css" media="all"> #dreamdu-red { color:red; } p#dreamdu-green { color:green; } </style> </head> <body> <p id="dreamdu-green">梦之都CSS 绿色字体</p> <div id="dreamdu-red">梦之都CSS 红色字体</div> </body> </html>