<style> body{ /* 第一种实现方式 background-color:#C0C0C0; /* 设置背景颜色为黑色 */ background-image:url('PHPCHINA.png'); /* 设置背景图片 */ background-repeat:no-repeat; /* 设置背景重复 no-repeat值背景图片只显示一次不重复 */ background-attachment:fixed; /* 设置背景附件 fixed值固定背景图片 滚动页面图片不动*/ background-position:center; /* 设置背景位置 center使图片位置固定在中间 */ */ background:#C0C0C0 url('PHPCHINA.png') no-repeat fixed center; /* 第二种实现方式 */ } p{ font-size:4em; } </style> </head>
- 3 回答
- 0 关注
- 2424 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消