gpt4 book ai didi

html - Background_position 不工作

转载 作者:太空宇宙 更新时间:2023-11-03 21:31:53 24 4
gpt4 key购买 nike

我无法让 background-position 工作。我试过把代码放在我能想到的任何地方!!!有任何想法吗???谢谢

http://codepen.io/anon/pen/ogPrxV

我的html是

<div class="container">
<div class="inner"></div>
</div>

我的CSS是

.container {
width: 80%;
background-color: red;
background-position: center;
text-align: center;
}

.inner {
border: 1px solid;
height: 160px;
width: 320px;
background-position: 50% 50%;
background: green url("welcome-small.png") no-repeat;
}

最佳答案

您使用的是背景图像的速记,因此您应该在背景中包含位置:样式。

.inner {
border: 1px solid;
height: 160px;
width: 320px;
background: url("welcome-small.png") no-repeat 50% 50% green;
}

关于html - Background_position 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28962986/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com