📝 代码查看
使用runcode.html页面

1
查看次数
2025-11-26
创建时间
2025-11-26
最后更新
 <section>
    <p>Hello</p>
  </section>
  <section>
    <p>Dva</p>
  </section>
  <section>
    <p>Antd</p>
  </section>
  <section>
    <p>Dora</p>
  </section>
section {
  width: 100vw;
  height: 100vh;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

section:nth-of-type(1) {
  background-image: url('https://unsplash.it/1024/683?image=1068');
}
section:nth-of-type(2) {
  background-image: url('https://unsplash.it/1024/683?image=1073');
}
section:nth-of-type(3) {
  background-image: url('https://unsplash.it/1024/683?image=1047');
}
section:nth-of-type(4) {
  background-image: url('https://unsplash.it/1024/683?image=1032');
}

body {
  margin: 0;
}
p {
  color: #fff;
  font-size: 100px;
  font-family: monospace;
}
暂无JavaScript代码

👁️ 实时预览