内容在中间

时间:2019-04-03 10:44:58

标签: javascript html css

如何使标题保持在左右之间的中间位置 当您在大屏幕手机上尝试播放时,标题会停留在中间 但是在小屏幕手机中,标题会向右移动

.tags {
  display: inline;
  position: relative;
}

.tags:hover:after {
  background: #333;
  background: rgba(0, 0, 0, .8);
  margin: 10px 5px 15px 90px;
  border-radius: 12px;
  bottom: 20px;
  color: #fff;
  content: attr(glose);
  left: -160%;
  padding: 5px 15px;
  position: absolute;
  z-index: 98;
  width: 140px;
}

.tags:hover:before {
  border: solid;
  border-color: #333 transparent;
  border-width: 7px 7px 0px 7px;
  bottom: 29px;
  content: "";
  left: 50%;
  position: absolute;
  z-index: 99;
}
<br><br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a class="tags" glose="Move down">Move down</a>

1 个答案:

答案 0 :(得分:-1)

只需将text-align: center添加到您的after元素