html 中设置网页背景有6种方法:① 背景色;② 背景图像;③ 背景重复;④ 背景位置;⑤ 背景大小;⑥ 背景附件。

HTML 中设置网页背景

HTML 中可以通过以下方法设置网页背景:

1. 背景色(background-color)

使用 background-color 属性设置均匀背景色。

立即学习“前端免费学习笔记(深入)”;

语法:

<body style="background-color: #cccccc;">
登录后复制

2. 背景图像(background-image)

使用 background-image 属性设置背景图像。

语法:

<body style="background-image: url('background.jpg');">
登录后复制

3. 背景重复(background-repeat)

使用 background-repeat 属性控制背景图像的重复方式。

语法:

<body style="background-image: url('background.jpg'); background-repeat: repeat;">
登录后复制

4. 背景位置(background-position)

使用 background-position 属性控制背景图像的位置。

语法:

<body style="background-image: url('background.jpg'); background-position: left top;">
登录后复制

5. 背景大小(background-size)

使用 background-size 属性控制背景图像的大小。

语法:

<body style="background-image: url('background.jpg'); background-size: 1000%;">
登录后复制

6. 背景附件(background-attachment)

使用 background-attachment 属性控制背景图像是否随页面滚动而滚动。

语法:

<body style="background-image: url('background.jpg'); background-attachment: fixed;">
登录后复制

以上就是html怎么做网页背景的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部