38.从0到上线三天搭建个人网站(第二天)

一、完成主要页面的搭建

index.html

38.从0到上线三天搭建个人网站(第二天)_第1张图片

content.html

38.从0到上线三天搭建个人网站(第二天)_第2张图片

about.html

38.从0到上线三天搭建个人网站(第二天)_第3张图片

二、技术点总结

1.背景色撑满屏幕
.content::before {
		content: " ";
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		background-color: black;
		z-index: -99;
	}

2.footer自适应固定在底部
.middle{
	min-height: calc(100vh - 90px);
}
.footer{
}

你可能感兴趣的:(搭建个人网站,前端,vue.js,javascript)