摘要:
下文讲述css中实现鼠标放在指定行上面时,整行变色的方法分享,如下所示:
实现思路:
使用:hover伪类,实现当鼠标指向时,其背景色发生相应的变化,如下例所示:
例:
下文中的div,当鼠标放上时,背景色发生相应的变化。
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.maomao365.com/" /> <title>猫猫教程(www.maomao365.com)</title> <style type="text/css"> div{ overflow:hidden; white-space:nowrap; height:30px; width:250px; background-color:white; color:black; } .divTest:hover{ background-color:blue; color:white; } </style> </head> <body> <div class="divTest">div 鼠标移上时,背景色发生变化</div> </body> </html>
总结
以上所述是小编给大家介绍的CSS 实现鼠标放在上面时整行变色效果,希望对大家有所帮助!