gpt4 book ai didi

html - 自定义复选框在 IE 7 和 IE 8 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 15:05:34 25 4
gpt4 key购买 nike

我在 HTML 上创建了自定义复选框,它在 IE 9、IE 10 和其他最新版本的浏览器上运行良好。但是当我尝试在 IE 7 和 IE 8 上运行它时,它不起作用。见图像。我做什么?请帮助我!

enter image description here

下面给出了我的 CSS 和 HTML 代码

CSS

    .ckbox
{
width: 25px;
height: 25px;
}
.custom-checkbox
{
position: relative;
display: inline-block;
}

.custom-checkbox > .box
{
position: relative;
display: block;
width: 25px;
height: 25px;
background-color: #FFF;
padding: 0px;
margin: 0px;
}

.custom-checkbox > .box > .tick
{
position: absolute;
left: 4px;
top: 7px;
width: 14px;
height: 6px;
border-bottom: 4px solid #000;
border-left: 4px solid #000;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
display: none;
}

.custom-checkbox > input:checked + .box > .tick
{
display: block;
}

.custom-checkbox > input
{
position: absolute;
outline: none;
left: 0;
top: 0;
padding: 0;
width: 25px;
height: 25px;
border: none;
margin: 0;
opacity: 0;
z-index: 1;
}

HTML

<table style="background-color: #E5E5E5;">
<tr>
<td>
<span class="custom-checkbox">
<input id="fileItem" name="fileItem" type="checkbox" class="ckbox" value="1" checked="checked" />
<span class="box"><span class="tick"></span></span>
</span>
<input id="fileId" name="fileId" type="hidden" value="" />
</td>
<td>
<label for="fileItem" title="">
Check</label>
</td>
</tr>
</table>

最佳答案

正如 Adrift 和 Matthew 所指出的,您包含的许多样式不适用于 ie7 和 8。在我看来,对于大多数应用程序来说这很好,因为它们仍然可以工作,而且人们不应该使用 ie7 & 8 无论如何。

如果您需要它在 ie 中工作,您可以使用 javascript 方法:http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/

关于html - 自定义复选框在 IE 7 和 IE 8 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15930586/

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