对齐单选按钮中使用的内容(图像),以便按钮不会显示

时间:2014-05-24 19:55:51

标签: html css forms css3 css-content

我目前在一个表单中有两个单选按钮,我使用CSS属性内容为每个按钮插入一个图像,并在选择或不选择时改变不透明度。原始单选按钮仍显示在图像的左侧。有没有办法移动图像,使其在原始单选按钮上居中?

#button1,
#button2 {
   height: 150px;
   width: 150px;
   margin-left: 10%;
   margin-right: 10%;
}

#button1 {
   content: url(../assets/logo.gif);
   opacity: .4;
   -webkit-transition-duration: 1.5s;
}

1 个答案:

答案 0 :(得分:1)

我想知道你FIDDLE是否正在寻找。

HTML

<label class="mickey" for="button1">
      <input id="button1" type="radio" name="testme" />
      <img src='http://i.imgur.com/Q7IJUNJ.png?1' alt='' />
</label>

<label class="mickey" for="button2">
      <input id="button2" type="radio" name="testme" />
      <img src='http://i.imgur.com/73kXZTR.jpg' alt='' />
</label>

CSS

#button1, #button2 {
    display: none;
}
input[type=radio] + img{
  cursor:pointer;
  border: 2px solid blue;
  opacity: 0.5;
}
input[type=radio]:checked + img {
  border: 2px solid red;
  opacity: 1.0;
}
img {
    height: 100px;
    width: 100px;
}