900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > html单选框背景图片 如何更改radio checkbox选项框背景图?

html单选框背景图片 如何更改radio checkbox选项框背景图?

时间:2019-07-02 01:18:41

相关推荐

html单选框背景图片 如何更改radio checkbox选项框背景图?

radio单选框默认是圆圈;checkbox复选框默认是正方形;

1、想问一下如何用纯CSS的方法改变选项框样式,比如将圆圈改成五角星或者菱形或者一张图片?

2、我切好图用 background:url("example.jpg")no-repeat;直接更换为何不行?

3、我目前用的是这样的方法,虽然能很好的实现目的,但总感觉不是太好,有点冗杂。希望能请教到更好的方法?

HTML:

`

CSS:

#yuyue{

width: 412px;

height:277px;

top: 183px;

left: 116px;

position: absolute;

background: url("images/testdrive/refer.png")no-repeat;

}

.sex{

width:50px;

height: 50px;

top:158px;

left: 82px;

position: absolute;

opacity: 0;

z-index: 3;

}

.sex1{margin-left: 94px;}

.dianji{

width:17px;

height:17px;

left:98px;

top:174px;

position: absolute;

background: url("images/testdrive/choose1.png");

z-index: 2;

}

.dianji1{margin-left: 90px;}

#yuyue input:checked + .dianji{

background: url("images/testdrive/choose2.png");

}

最后 为了掌握多种方法,不是纯CSS的也希望指教一下。谢谢回答!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。