日期:2014-05-17 浏览次数:20734 次
<!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> new document </title> <style type="text/css"> .b .c { background:#ffff99; } span:hover { background:#5b1672; } </style> </head> <body> <div class="b"> <span class="c"> asdddffgghh </span> </div> </body> </html>
.b .c { background:#ffff99; } .b span:hover { background:#5b1672; }
.c { background:#ffff99; } span:hover { background:#5b1672; }
.c { background:#ffff99; } .b span:hover { background:#5b1672; }