首页 > 解决方案 > CSS:背景img不居中

问题描述

当我打开 HTML 文件时,背景 img 居中,但将文件上传到 Wordpress 后,背景居中在屏幕右侧。我不知道问题可能是什么。

这是代码

body {
line-height: 1;
background:url(images/shopbg.png);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 80%;
background-position: center center;
background-color: black;

标签: javascripthtmlcss

解决方案


您的样式应用于<body>标签,当您上传文件时,您可能有其他 css 文件,其类位于<body>. 您可以为您的元素创建一个特定的类并在那里应用样式。


推荐阅读