html页面练习——公司发展流程图

1.效果图

2.html

html 复制代码
<div class="center">
        <header>
            <h1>发展历程</h1>
            <h3>CONMPANY HISTORY</h3>
        </header>
        <main>
            <div class="left">
                <div class="time1">2012.12</div>
                <div class="red-border">
                    <div class="text">园区服务方向</div>
                </div>
                <div class="time1">2014.03</div>
                <div class="red-border">
                    <div class="text">业务转型互联网销售</div>
                </div>
                <div class="time1">2016.06</div>
                <div class="red-border">
                    <div class="text">期待...</div>
                </div>
            </div>
            <div class="line">
                <div class="circle1">

                </div>
                <div class="circle2">

                </div>
                <div class="circle3">

                </div>
                <div class="circle4">

                </div>
                <div class="circle5">

                </div>
                <div class="circle6">

                </div>
            </div>
            <div class="right">
                <div class="red-border1">
                    <div class="text1">公司成立</div>
                </div>
                <div class="time2">2012.12</div>
                <div class="red-border1">
                    <div class="text1">火天使投资900万</div>
                </div>
                <div class="time2">2014.03</div>
                <div class="red-border1">
                    <div class="text1">v1.0版本上线</div>
                </div>
                <div class="time2">2016.06</div>
            </div>
        </main>
    </div>

3.css

css 复制代码
*{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
header{
    color: lightcoral;
}
.center{
    width: 100vw;
    height: 100vh;
    display: flex;
    /* justify-content:center水平居中 */
    justify-content: center; 
    /* align-items:center垂直居中 */
    align-items: center;
    flex-direction: column;
    text-align: center;
}
main{
    /* width: 100%; */
    height: auto;
    display: flex;
    /* justify-content: space-around;    */
}

.line{
    width: 8px;
    height: 420px;
    background-color: #ccc;
    position: relative;
}
.circle1{
    position: absolute;
    left: -5px;
    top: 70px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid lightcoral;
}
.circle2{
    position: absolute;
    left: -5px;
    top: 140px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid lightcoral;
}
.circle3{
    position: absolute;
    left: -5px;
    top: 210px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid lightcoral;
}
.circle4{
    position: absolute;
    left: -5px;
    top: 280px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid lightcoral;
}
.circle5{
    position: absolute;
    left: -5px;
    top: 350px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid lightcoral;
}
.circle6{
    position: absolute;
    left: -5px;
    top: 415px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid lightcoral;
}
.left{
    width: 12vw;
    height: 420px;
    padding-top: 49px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


.time1{
    color: lightcoral;
    padding-left: -130px;
    /* text-align: right; */
    
}
.red-border{
    width: 200px;
    height: 50px;
    border: 2px solid lightcoral;
    /* 圆角边框 */
    border-radius: 50px 0 0 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text{
    width: 190px;
    height: 40px;
    background-color: lightcoral;
    color:white;
    line-height: 40px;
    border-radius: 50px 0 0 50px;
}
.right{
    width: 10vw;
    height: 420px;
    padding-top: 32px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.time2{
    color: lightcoral;
    padding-right: 130px;
    
}
.red-border1{
    width: 200px;
    height: 50px;
    border: 2px solid lightcoral;
    /* 圆角边框 */
    border-radius:  0 50px 50px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text1{
    width: 190px;
    height: 40px;
    background-color: lightcoral;
    color:white;
    line-height: 40px;
    border-radius:  0 50px 50px 0;
}
相关推荐
葡萄城技术团队19 小时前
所有网站通用:6 行 HTML 代码搞定页面加载提速
html
糖糖TANG20 小时前
从零开始制作我的第一个静态网页——教师节主题首页开发记录
html
前端老鹰2 天前
HTML <output> 标签:原生表单结果展示容器,自动关联输入值
前端·html
芦苇Z2 天前
HTML <a> 标签的 rel 属性全解析:安全、隐私与 SEO 最佳实践
前端·html
Alice-YUE2 天前
【CSS学习笔记3】css特性
前端·css·笔记·html
少年阿闯~~2 天前
CSS3的新特性
前端·javascript·css3
破无差2 天前
《赛事报名系统小程序》
小程序·html·uniapp
从零开始学习人工智能2 天前
快速搭建B/S架构HTML演示页:从工具选择到实战落地
前端·架构·html
yddddddy2 天前
html基本知识
前端·html
恶猫3 天前
javascript文本长度检测与自动截取,用于标题长度检测
javascript·css·css3·js·自动检测·文本长度