這篇文章主要介紹了程式碼實現css滑鼠經過元素下劃線兩邊展開效果,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>鼠标移入下划线展开</title> <style type="text/css"> #underline{ width: 200px; height: 50px; background: #ddd; margin: 20px; position: relative; } #underline:after{ content: ""; width: 0; height: 1px; background: blue; position: absolute; top: 100%; left: 50%; transition: all .8s; } #underline:hover:after{ left: 0%; width: 100%; } </style> </head> <body> <p id="underline"></p> </body> </html>
相關推薦:
############################################################################################### #水平導覽列+導覽列跟隨+導覽列下劃線滑動效果##########以上是程式碼實現css滑鼠經過元素下劃線兩邊展開效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!