css怎么让网页各屏背景全屏显示

html-css012

css怎么让网页各屏背景全屏显示,第1张

css让网页各屏背景全屏显示,首先需要理解就是浏览器展示区域,其实就是body这个部分,想要让背景全屏的话,需要用到css的background这个属性,在选择好背景的图片就可以了,具体看下代码:

<html>

<head>

<style>

body{

background:url('图片地址')repeat 0px 0px

}

</style>

</head>

<body>

<p>我是测试文字</p>

</body>

</html>

background: url(../images/login/theme4.jpg) center center no-repeat

background-attachment: fixed

background-size: cover

background-size: 100%  background-size的属性可以调整试试cover,100%等