css实现文字阴影海报封面效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现文字阴影海报封面效果代码

代码标签: cs 文字 阴影 海报 封面

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

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

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1">
  
  
  
<style>
@import url("https://fonts.googleapis.com/css?family=Anton");
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
}

html {
  font-size: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  align-items: center;
  background-color: #edeff5;
  display: flex;
  font-family: sans-serif;
  font-size: 100%;
  font-weight: normal;
  justify-content: center;
  overflow-x: hidden;
  padding: 2rem;
}

.poster {
  align-items: center;
  background-color: white;
  box-s.........完整代码请登录后点击上方下载按钮下载查看

网友评论0