我如何将这张背景照片居中
How i center this background photo
body {
background-color: #ffffff;
background-image: url(111.png);
background-repeat: no-repeat;
}
大家好。我有个问题。我在背景上有这张小图片 111.png 是一张 300 x 300 的简单图片,此代码放在左上角。
你们能告诉我如何转换此 css 样式代码以将图像背景置于中心吗?
谢谢。
尝试background-position: center;
body {
background-color: #ffffff;
background-image: url(111.png);
background-repeat: no-repeat;
}
大家好。我有个问题。我在背景上有这张小图片 111.png 是一张 300 x 300 的简单图片,此代码放在左上角。
你们能告诉我如何转换此 css 样式代码以将图像背景置于中心吗? 谢谢。
尝试background-position: center;