CSS可以用來制作時(shí)間軸,下面是一個(gè)基本的示例:
HTML代碼:
```html
<div class="time-軸">
<h2>時(shí)間軸標(biāo)題</h2>
<p>時(shí)間軸內(nèi)容。</p>
</div>
CSS代碼:
```css
.time-軸 {
position: relative;
width: 200px;
height: 200px;
.time-軸 h2 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #f00;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
.time-軸 p {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
padding: 20px;
.time-軸:before,
.time-軸:after {
content: "";
position: absolute;
top: 0;
left: 100%;
width: 100%;
height: 100%;
background-color: #f00;
transform: translate(-100%, 0);
.time-軸:before {
left: 50%;
transform: translateX(-50%);
.time-軸:after {
left: 0;
transform: translateX(50%);
這個(gè)示例中,我們使用了一個(gè)`div`元素來創(chuàng)建時(shí)間軸,并使用CSS設(shè)置了它的樣式。我們使用了`position: relative`屬性來將其定位在頁面的上半部分,并使用`width: 200px; height: 200px`屬性來設(shè)置其大小。然后,我們使用`.time-軸`屬性將其設(shè)置為一個(gè)包含一個(gè)`h2`元素和一個(gè)`p`元素的`div`元素,并設(shè)置了它們的樣式。
在`h2`元素中,我們使用了`position: absolute`屬性并將其定位在時(shí)間軸的頂部,使用`top: 0; left: 0;`屬性來設(shè)置其初始位置。在`p`元素中,我們使用了`position: absolute`屬性并將其定位在時(shí)間軸的下方,使用`top: 50%; left: 50%;`屬性來設(shè)置其移動方式。我們使用了`transform`屬性來使其移動方式為垂直居中,并在其中添加了一些padding,以使其看起來更加美觀。
當(dāng)我們將`<div class="time-軸">`替換為實(shí)際的HTML代碼時(shí),我們就可以在頁面上創(chuàng)建一個(gè)簡單的時(shí)間軸了。我們可以根據(jù)需要調(diào)整時(shí)間軸的樣式,使其更符合我們的需求。