圆形链接

来源:互联网 发布:world软件下载 编辑:程序博客网 时间:2024/04/27 21:43

效果图:


CSS代码

a.demo{display:inline-block;border-radius:50%;width:60px;height:60px;line-height:60px;text-align:center;text-decoration:none;font-size: 15px;font-weight: 800;color: #fff;background: rgba(104,171,194,0.5);text-shadow: 1px 1px 1px rgba(0,0,0,0.1);box-shadow: 1px 1px 1px rgba(0,0,0,0.05) inset;}


HTML代码

<!doctype html><html lang="en"><head><meta charset="UTF-8"><link rel="stylesheet" type="text/css" href="first.css" /><title>Document</title></head><body><p><a href="#" class="demo">Click</a><a href="#" class="demo">点击</a></p></body></html>


0 0
原创粉丝点击