我遇到了特定部分的問題。期望的目標是,它看起來像this。對齊文本和圖像
而我得到this。
.timeline {
text-align: center;
}
#about-us {
ul {
&:before {
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 2px;
margin-left: -1.5px;
content: '';
background-color: #f1f1f1;
z-index: -1;
}
}
img {
width: 150px;
height: 150px;
border-radius: 50%;
}
}
.timeline-img {
border: 7px solid #f1f1f1;
border-radius: 50%;
text-align: center;
display: inline-block;
}
.timeline-1,
.timeline-3 {
.timeline-info {
float: left;
width: 45%;
text-align: right;
}
}
.timeline-2,
.timeline-4 {
.timeline-info {
float: right;
width: 45%;
text-align: left;
}
}
此外,最後的灰線溢出一點點,我不能使它只要最後一個圖像。
你是不是用引導的網格系統呢?我現在正在使用網格系統開發解決方案。 –