所以,我已经看到了很多关于这个的问题,但我想要一个个人的例子。我对编程很陌生,所以我可能有点愚蠢......
无论如何,我有两个<div>
s,一个带有 id bg
,另一个带有 class player
。
这是它的样子:
红框为播放器,大图为bg。
我需要玩家从背景中心开始。
背景为 640 像素 X 640 像素。
这是我目前在我的 CSS 文件中的代码:
#bg {
width: 640px;
height: 640px;
top: 0;
left: 0;
}
.player {
position:relative;
background-color:#FF0000;
width: 32px;
height: 32px;
top: 0px;
left: 0px;
}