首页 > 其他分享 >css自适应各种格式背景图

css自适应各种格式背景图

时间:2022-12-20 10:33:55浏览次数:38  
标签:580px url image background 格式 背景图 链接 css size

body {
			position: relative;
			background-color: #eee;
			background-image: url(链接);
			background-size: 100%;
			max-width: 580px;
			margin: 0 auto;
		}

 直接在源代码中插入如下

style="background-repeat:no-repeat; background-attachment:fixed;background-size:cover;background-image: url(链接);">

放在<style>标签即可

<style>
      body {
        position:relative;
        background-color: #eee;
        background-image: url(链接);
        background-size: 100%;
        max-width: 580px;
        margin: 0 auto;
      }
    </style>

 

标签:580px,url,image,background,格式,背景图,链接,css,size
From: https://www.cnblogs.com/xkboi/p/16993675.html

相关文章