gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 17:42:28 24 4
gpt4 key购买 nike

我目前在一个表单中有两个单选按钮,我使用 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;
}

最佳答案

我想知道这 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;
}

关于html - 对齐单选按钮中使用的内容(图像),使按钮不会显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23849063/

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