gpt4 book ai didi

html - 图像按钮在表格单元格内不可见

转载 作者:太空宇宙 更新时间:2023-11-04 01:57:46 24 4
gpt4 key购买 nike

我的html代码是

<tr>
<td><input type="image" style="height:25px; width:25px;" src="plus.png"></td>
</tr>

正在创建单元格,但未显示图像。但是,如果我使用 img 标签,它会显示,所以图像的 src 没有问题。

编辑:CSS 链接可能是问题所在,但无法弄清楚是什么:-

    *{
font-family: Arial, sans;
margin: 0;
padding: 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
}

h1 {
margin: 1em 0;
text-align: center;
}

#container {
margin: 0 auto;
width: 50%;
}

#container input {
height: 2.5em;
visibility: hidden;
}

#container label {
background: #f9f9f9;
border-radius: 1em 1em 0 0;
color: #888;
cursor: pointer;
display: block;
float: left;
font-size: 1em;
height: 2.5em;
line-height: 2.5em;
margin-right: .25em;
padding: 0 1.5em;
text-align: center;
}

#container input:hover + label {
background: #ddd;
color: #666;
}

#container input:checked + label {
background: #DBF3FD;
color: #444;
position: relative;
z-index: 6;
/*
-webkit-transition: .1s;
-moz-transition: .1s;
-o-transition: .1s;
-ms-transition: .1s;
*/
}

#content {
background: #DBF3FD;
border-radius: 0 .25em .25em .25em;
min-height: 18em;
position: relative;
width: 100%;
z-index: 5;
}

#content div {
opacity: 0;
padding: 1.5em;
position: absolute;
z-index: -100;
}

#content-1 p {
clear: both;
margin-bottom: 1em;
}
#content-1 p.last {
margin-bottom: 0;
}

#content-2 p {
float: left;
width: 48.5%;
}
#content-2 p.column-right {
margin-left: 3%;
}

#content-3 p {
float: left;
width: 48.5%;
}
#content-3 p.column-right {
margin-left: 3%;
}

#container input#tab-1:checked ~ #content #content-1,
#container input#tab-2:checked ~ #content #content-2,
#container input#tab-3:checked ~ #content #content-3
{
opacity: 1;
z-index: 100;
}

input.visible {
visibility: visible !important;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}

td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}

tr:nth-child(odd) {
background-color: #FFFFFF;
}
table {
border-collapse: collapse;
width: 100%;
}

th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}

tr:hover{background-color:#96DCF7}

最佳答案

在您的代码中,您编写该输入:

input.visible {
visibility: visible !important;
}

但是你还有:

input {
visibility: hidden;
}

您从不在向我们展示的代码中引用 .visible 类,因此它保持隐藏状态。也许这就是问题所在。尝试将 class="visible" 添加到输入中。

<tr>
<td>
<input class="visible" type="image" style="height:25px; width:25px;" src="plus.png">
</td>
</tr>

关于html - 图像按钮在表格单元格内不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42314709/

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