css:联系我们-文字竖排

  1. html
<div
      class="fixed-div"
      @click="showChat"
    ><i class="el-icon-eleme"></i>联系我们
</div>
  1. css
.fixed-div {
  position: fixed;
  color: #fff;
  background-color: red;
  width: 50px;
  height: 150px;
  border-radius: 5px;
  display: flex;
  /* 文字竖排 */
  writing-mode: vertical-lr;
  text-orientation: upright;
  letter-spacing: 2px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 6px rgb(0 0 0 / 12%);
  cursor: pointer;
  z-index: 5;
  bottom: 160px;
  right: 40px;
}
  1. 效果
posted @ 2022-06-24 08:50  年轻浅识  阅读(64)  评论(0)    收藏  举报