2020年6月3日学习笔记

CSS背景

背景位置(position)补充

body {
	background-image:url(images/图片.jpg);
	background-repeat:no-repeat;
	/*这种写法一般是我们以后对超大背景图片的做法:上居中*/
	background-position:ceter top;

背景附着

解释背景是滚动的还是固定的
语法:

background-attachment:scroll|fixed

参数:
scroll:背景图像随内容滚动
fixed:背景图像固定

背景简写

background:背景颜色 背景图片地址 背景平铺 背景滚动 背景位置(建议写法)
语法:

background: transparent url(image.jpg) repeat-y scroll center top ;

你可能感兴趣的:(笔记)