css布局实现一个简洁的个人简历html代码

代码语言:html

所属分类:布局界面

代码描述:使用css布局实现一个简洁的个人简历html代码,包含个人信息、工作经验、教育经历、项目经验。

代码标签: html css 简历

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" />

    <style>
        .flex-box {
    	display:-webkit-box;
    	display:-ms-flexbox;
    	display:flex;
    	-webkit-box-orient:vertical;
    	-webkit-box-direction:normal;
    	-ms-flex-direction:column;
    	flex-direction:column
    }
    .flex-box .edu-box {
    	-webkit-box-ordinal-group:2;
    	-ms-flex-order:1;
    	order:1
    }
    .template-container {
    	position:relative;
    	width:794px;
    	-webkit-box-sizing:border-box;
    	box-sizing:border-box;
    	background:#fff;
    	padding-bottom:84px;
   
    }
    .vip-header {
    	height:84px;
    	background-size:contain
    }
    .item-box {
    	padding:0 60px 40px
    }
    .item-box .content-box {
    	margin-left:10px;
    	margin-top:20px
    }
    .avatar {
    	width:108px;
    	height:108px;
    	border-radius:54px
    }
    .name-box {
    	padding-bottom:0;
    	display:-webkit-box;
    	display:-ms-flexbox;
    	display:flex
    }
    .name-box .name {
    	font-size:30px;
    
    	font-weight:700;
    	color:#000;
    	line-height:42px;
    	margin-top:6px;
    	margin-bottom:15px
    }
    .phone-location-box {
    	padding-left:60px
    }
    .phone-location-box p {
    	font-size:13px;
    	
    	font-weight:400;
    	color:#333;
    	line-height:28px
    }
    .phone-location-box p .phone-row img {
    	display:inline-block;
    	width:16px;
    	height:16px;
    	vertical-align:middle;
    	margin-right:6px
    }
    .phone-location-box .phone-row span {
    	vertical-align:middle;
    	margin-right:18px
    }
    .phone-location-box .phone-row span:last-child {
    	margin-right:0
    }
    .user-info {
    	display:-webkit-box;
    	display:-ms-flexbox;
    	display:flex;
    	width:470px;
    	-ms-flex-wrap:wrap;
    	flex-wrap:wrap
    }
    .user-info span {
    	margin-top:0
    }
    .user-info span:first-child {
    	white-space:nowrap;
    	margin-right:18px;
    	margin-top:0
    }
    .user-info .phone-row {
    	margin-top:0
    }
    .large-title {
    	width:100%;
    	height:33px;
    	line-height:33px;
    	font-size:18px;
    	
    	font-weight:700;
    	color:#fff;
    	position:relative
    }
    .large-title:after {
    	position:absolute;
    	left:0;
    	bottom:0;
    	width:100%;
    	height:1px;
    	content:"";
    	background:-o-linear-gradient(right,#fff 0,rgba(0,123,134,.6) 100%);
    	background:-webkit-gradient(linear,right top,left top,from(#fff),to(rgba(0,123,134,.6)));
    	background:linear-gradient(270deg,#fff,rgba(0,123,134,.6))
    }
    .large-title .title {
    	display:-webkit-box;
    	display:-ms-flexbox;
    	display:flex
    }
    .large-title .title p:first-child {
    	background:#007b86;
    	padding-left:16px;
    	border-top-left-radius:8px
    }
    .large-title .title .color {
    	width:74.........完整代码请登录后点击上方下载按钮下载查看

网友评论0