赛博朋克2077风格网页
时间: 2024-06-14 16:04:39 浏览: 221
以下是实现赛博朋克2077风格网页的几个例子:
1. 高对比度效果:
```css
body {
background-color: #000;
color: #fff;
}
```
2. 不规则图形的文本展示框:
```html
<div class="text-box">
<h1>赛博朋克2077</h1>
<p>故事发生在夜之城,权力更迭和身体改造是这里不变的主题。</p>
</div>
<style>
.text-box {
background-color: #000;
color: #fff;
padding: 20px;
border-radius: 10px;
clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}
</style>
```
阅读全文