标签:text play java font bsp for color add rip
<HTML><HEAD> <meta http-equiv="content-Type"content="text/html;charset=utf-8"> <TITLE>css before after基本用法</TITLE> <style> p::before{ content: "H" } p::after{ content: "d" } a { position: relative; display: inline-block; outline: none; text-decoration: none; color: #000; font-size: 32px; padding: 5px 10px; } a:hover::before, a:hover::after { position: absolute; } a:hover::before { content: "\5B"; left: -10px; } a:hover::after { content: "\5D"; right: -10px; } </style> <script type="text/javascript" src="D:/Old PC/D/html/jQuery/jquery-3.1.0.js" ></script> <script type="text/javascript"> </script> </HEAD> <BODY> <p>ello Worl</p> <br/> <a href="http://www.baidu.com">aaa</a> </BODY> </HTML>
标签:text play java font bsp for color add rip
原文地址:http://www.cnblogs.com/whatlonelytear/p/6575684.html