首页 > 代码库 > css before after基本用法【转】
css before after基本用法【转】
<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>
css before after基本用法【转】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。