gpt4 book ai didi

html - 使用 css 显示图像

转载 作者:太空宇宙 更新时间:2023-11-04 14:12:28 26 4
gpt4 key购买 nike

我正在尝试使用 css 显示图像。但无论如何它都不会显示。请帮我。我的代码是:

//styles.css

table tr td span.glyphicon-eye-open{
background: url("../images/private-eye.png") no-repeat;
}
//Register.php

<form method="post" id="form1">
<table align="center" width="45%" cellpadding="7px">
<tr>
<td><label>*</label><input type="text" name="email" placeholder=" Your Email" value="<?=$email?>"/></td>
</tr>
<tr>
<td><label>*</label> <input type="password" name="pass" id="passwordfield" placeholder=" Your Password" value="<?=$password?>"/>
<span class="glyphicon-eye-open"></span>
</td>
<tr>
<td><button type="submit" name="btn_Register">Register</button></td>
</tr>
</table>
</form>

我还包括了'link rel="stylesheet"href="../css/styles.css"type="text/css"/'头上有标签

最佳答案

那是因为你的跨度根本没有高度。每个 span 都没有高度,除非你在其中插入一些文本或通过 CSS 编辑它的高度。例如,我在这里放了一些文字,如下所示:

span.glyphicon-eye-open {
background: url("http://beerhold.it/320/200") no-repeat;
color: #fff;
}
//Register.php

<form method="post" id="form1">
<table align="center" width="45%" cellpadding="7px">
<tr>
<td><label>*</label><input type="text" name="email" placeholder=" Your Email" value="<?=$email?>"/></td>
</tr>
<tr>
<td><label>*</label> <input type="password" name="pass" id="passwordfield" placeholder=" Your Password" value="<?=$password?>"/>
<span class="glyphicon-eye-open">@@@</span>
</td>
<tr>
<td><button type="submit" name="btn_Register">Register</button></td>
</tr>
</table>
</form>

关于html - 使用 css 显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38813865/

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