梦之都
CSS教程
,
CSS类选择符
示例,特定元素下的类型选择符
Not green
Very green
<!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类选择符示例,特定元素下的类型选择符</title> <style type="text/css" media="all"> p.dreamdu-green-12px { color:green; font-size:12px; } </style> </head> <body> <div id="copyright"> <span class="dreamdu-green-12px">Not green</span> <p class="dreamdu-green-12px">Very green</p> </div> </body> </html>