什么时候会出现?不工作?" />

什么时候会出现?不工作?

发布于 2024-08-03 02:02:40 字数 350 浏览 5 评论 0 原文

你有没有总结过这个问题?

现在我遇到了一个,很奇怪,不知道为什么。

我的代码:

<td valign="top">
    <input type="text" />
    <iframe scrolling="no" height="21px" frameborder="0" width="62px" marginheight="0" marginwidth="0" src="Server/SecCode.php">
    </iframe>
</td>

但事实证明“输入”对齐到底部,而“iframe”对齐到顶部。

Have you ever concluded about this?

Now I've met one, very strange, don't know why.

My code:

<td valign="top">
    <input type="text" />
    <iframe scrolling="no" height="21px" frameborder="0" width="62px" marginheight="0" marginwidth="0" src="Server/SecCode.php">
    </iframe>
</td>

But it turns out to be that the "input" is valigned to the bottom,while "iframe" to the top.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

じее 2024-08-10 02:02:40

我经历了类似的事情,当我在 td 标签中手动添加 css 代码时,

<td style=" vertical-align: top;" >

它为我纠正了问题。

I experienced something similiar, when I added the css code

<td style=" vertical-align: top;" >

manually within the td tag it corrected the problem for me.

樱娆 2024-08-10 02:02:40

将文档类型更改为

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

change the doctype to

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
开始看清了 2024-08-10 02:02:40

我同意,更多信息将有助于解决这个问题。如果仅用于调试目的,您可能需要尝试:

<td valign="top">
<input type="text" /><Br/>
<iframe scrolling="no" height="21px" frameborder="0" width="62px" marginheight="0" marginwidth="0" src="Server/SecCode.php">
</iframe>

I agree, a little more information will be helpful track down this problem. If only for debugging purposes, you may want to try:

<td valign="top">
<input type="text" /><Br/>
<iframe scrolling="no" height="21px" frameborder="0" width="62px" marginheight="0" marginwidth="0" src="Server/SecCode.php">
</iframe>

忘你却要生生世世 2024-08-10 02:02:40

仅当您在页面上使用其他类型的文档类型时,valign 才会起作用,
也许你有类似的东西:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

尝试删除 doctype,这不是一个好的做法,然后看看它是否有效。

所以只放置 html 标签。

valign would only work if you used other kinds doctypes on your page,
probably you have something like:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

Try to remove the doctype, what isn't a good practice, and see if it's works..

So put only the html tag..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文