div+css布局实现黑暗中文字发光效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css布局实现黑暗中文字发光效果代码

代码标签: div css 布局 黑暗 文字 发光

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

<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>

body {
    padding: 0;
    margin: 0;
    height: 100vh;
    background-color: #202020;
    display: flex;
    align-items: center;
    justify-content: center
}

.text {
    font-size: 20px;
    font-weight: bold;
    border-radius: 1em;
    position: relative;
   .........完整代码请登录后点击上方下载按钮下载查看

网友评论0