!在圆形CSS3上

时间:2014-10-01 14:56:10

标签: css3

使用sass。

.tooltip{
  background: #5dc5c5;
  width: 30px;
  height: 30px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: inline;
  opacity: 1!important;
  padding: 10px;
  &:before{
    color: #fff;
    content:'\0021';
    font-size: 16px;
    text-align: center;
  }
}

    .tooltip:hover:after {
    background: #111;
    background: rgba(0,0,0,.8);
    border-radius: .5em;
    bottom: 1.35em;
    color: #fff;
    content: attr(title);
    display: block;
    left: 1em;
    padding: .3em 1em;
    position: absolute;
    text-shadow: 0 1px 0 #000;
    white-space: nowrap;
    z-index: 98;
}

HTML

<a href="#" class="tooltip" title="Tips: see instruction blah"></a>

一直在尝试制作信息'!'在圆形状,但到目前为止它没有显示圆形状。之前和之后都尝试过但是没有在圆圈上显示:(

洞察或帮助将不胜感激。

0 个答案:

没有答案