如何设计css框如下图所示

时间:2016-03-08 15:02:28

标签: html css html5 css3 css-shapes

有没有可能使用CSS做下面的图像? 我不知道从哪里开始。它是通过border-radius属性实现的吗?

enter image description here

1 个答案:

答案 0 :(得分:-1)

有一些在线工具可以生成这种东西,例如:

CSS Tooltip Generator

示例代码(HTML):

<div style='padding:50px'>
  <a class="tooltips" href="#">CSS Tooltips
    <span>Tooltip</span>
  </a>
</div>

示例代码(CSS):

a.tooltips {
  position: relative;
  display: inline;
}
a.tooltips span {
  position: absolute;
  width:140px;
  color: #FFFFFF;
  background: #000000;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
  border-radius: 6px;
}
a.tooltips span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #000000;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
a:hover.tooltips span {
  visibility: visible;
  opacity: 0.8;
  bottom: 30px;
  left: 50%;
  margin-left: -76px;
  z-index: 999;
}