我怎么能把单选按钮放在图像上?

时间:2017-03-30 18:41:55

标签: css html5

我想编写类似的代码:

enter image description here

我在单选按钮上使用了CSS,但它们并没有像我想要的那样定位我的图像。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我想我明白你想要什么。如果没有,请发布一些代码以帮助我们帮助您......

这可能是你正在寻找的东西:

#myDiv {
  width: 200px;
  height: 200px;
  background-image: url("http://www.25score.com/attachments/article/691/small/Taco%20Bell%20200x200%20(small).jpg")
}

input[type="radio"] {
  position: absolute;
  top: 100px;
  left: 120px;
}
<div id="myDiv">
  <input type="radio">
</div>