梦之都
CSS教程
,
CSS类选择符
示例,类选择符名称可以使用多个"."相连,形成类选择符链,IE6不支持类选择符链
梦之都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类选择符示例,类选择符链</title> <style type="text/css" media="all"> .www.dreamdu.com { color:blue; } </style> </head> <body> <p class="www dreamdu">梦之都CSS 非蓝色字体</p> <p class="www dreamdu com">梦之都CSS 蓝色字体</p> </body> </html>