使用css的文本边框(围绕文本的边框)

前端之家收集整理的这篇文章主要介绍了使用css的文本边框(围绕文本的边框)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法整合边框周围的文本像下面的图像?

解决方法

使用多个文字阴影:
text-shadow: 2px 0 0 #fff,-2px 0 0 #fff,0 2px 0 #fff,0 -2px 0 #fff,1px 1px #fff,-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff;
body {
  font-family: sans-serif;
  background: #222;
  color: darkred;
  }
h1 {
  text-shadow: 2px 0 0 #fff,-1px 1px 0 #fff;
}
<h1>test</h1>

或者,您可以使用文本笔触,它只能在webkit中使用:

-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #fff;
body {
  font-family: sans-serif;
  background: #222;
  color: darkred;
  }
h1 {
  -webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #fff;
}
<h1>test</h1>

还有read more作为css-Tricks。

原文链接:https://www.f2er.com/css/223568.html

猜你在找的CSS相关文章