单个div+css实现霓虹灯文字效果代码

代码语言:html

所属分类:布局界面

代码描述:单个div+css实现霓虹灯文字效果代码

代码标签: 单个 div css 霓虹灯 文字

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  

  
<style>
body {
  min-height: 350px;
  height: 100vh;
  position: relative;
  background-color: #222;
}
div {
  position: absolute;
  left: 50%;
  top: 50%;
}
div::before,
div::after {
  display: block;
  content: '';
  position: absolute;
}
@media (max-width: 400px) {
  div:not(.no-scale) {
    transform: scale(0.8);
  }
}
#ten {
  box-sizing: border-box;
  width: 250px;
  height: 250px;
  margin-left: -125px;
  margin-top: -125px;
  background-repeat: no-repeat;
  border-radius: 1em;
  border: 0.15em solid white;
  box-shadow: inset 0 0 0 0.2em #ff6347, inset 0 0 1em 0.3em #ff6347, inset 1em 1em 0.4em rgba(0,0,0,0.6), 0 0 0 0.2em #ff6347, .........完整代码请登录后点击上方下载按钮下载查看

网友评论0