如何使用CSS获取轮廓刻度?

时间:2019-04-04 00:16:22

标签: html css html5 css3

enter image description here我正在尝试在应用程序中添加刻度线。当前我的背景是black。请告诉我如何添加outline tick

这是代码 https://jsbin.com/cilocakedu/edit?html,css,output

.img {
  width: 200px;
  opacity: 0.5
}

.image-container {
  position: relative;
  text-align: center;
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 5rem;
  transform: translate(-50%, -50%);
}

1 个答案:

答案 0 :(得分:1)

听起来您正在寻找一个透明但黑色轮廓的复选框。您可以尝试将其添加到您的.icon类:

color: transparent;
-webkit-text-stroke: 2px black;

请注意,“-webkit-text-stroke”可在大多数现代浏览器上使用:

https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-stroke#Browser_compatibility