0

我正在使用jQuery 手机。

我目前在页面中有一张图片。

我需要在图像的 4 个角落放置 4 个标签

如何在图像的 4 个角落设置标签。

4

1 回答 1

1

HTML

<div class="imgContainer">
  <img src="imagepath" />
  <label class="label1">1</label>
  <label class="label2">2</label>
  <label class="label3">3</label>
  <label class="label4">4</label>
</div>

CSS

.imgContainer{
  position: relative;
}
.label1, .label2, .label3, .label4{
  position: absolute;
  left: 0;
  top: 0;
}
.label2{
  right: 0;
  top: 0;
}
.label3{
  left: 0;
  bottom: 0;
}
.label4{
  right: 0;
  bottom: 0;
}
于 2012-07-27T11:22:10.357 回答