如何在文本下创建点/小圆?

时间:2017-05-29 07:11:30

标签: html css css-shapes

如何仅使用CSS在文本下制作一个点,如下图所示?

Picture with dot

图片需要始终位于任意长度的字符串中间。 可能我需要使用:before:after?我试过但结果很糟糕。

2 个答案:

答案 0 :(得分:3)

转换后的伪元素可用于创建:

body { text-align: center; }

.text {
  display: inline-block;
  vertical-align: top;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
  padding: 20px 10px;
  line-height: 24px;
  min-width: 100px;
  background: #333;
  font-size: 20px;
  color: #fff;
}

.text::before {
  transform: translateX(-50%);
  border-radius: 100%;
  position: absolute;
  background: blue;
  bottom: 10px;
  height: 8px;
  content: '';
  width: 8px;
  left: 50%;
}
<div class="text">about</div>

答案 1 :(得分:0)

.char {
    display: inline-block;
    position: relative;
}
.char::before {
    content: '.';
    display: inline-block;

    position: absolute;
    bottom: -0.5em;
    left: 0;

    text-align: center;
    width: 100%;

}

在堆栈上写下这个问题后,我提出了想法:)它的作品非常像我想要的那样:)