使用CSS创建帮助图标

时间:2015-03-17 15:06:36

标签: html css image

现在我正在使用锚标记为帮助图标生成问号。看起来像这样

enter image description here

但我希望问号看起来像这样:

enter image description here

我不确定如何使用CSS来设置它看起来像第二个。如何创建1)圆圈和2)具有渐变的背景?

1 个答案:

答案 0 :(得分:7)

你可以用这样的css来做。



a {
    color:#fff;
    background-color:#feb22a;
    width:12px;
    height:12px;
    display:inline-block;
    border-radius:100%;
    font-size:10px;
    text-align:center;
    text-decoration:none;
    -webkit-box-shadow: inset -1px -1px 1px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: inset -1px -1px 1px 0px rgba(0,0,0,0.25);
    box-shadow: inset -1px -1px 1px 0px rgba(0,0,0,0.25);
}

<a href="#">?</a>
&#13;
&#13;
&#13;

但Quentin是对的,这是一个图形问题,而不是程序员