使用 CSS 在文本框中居中文本(垂直)

Centering text (vertically) inside a textbox using CSS(使用 CSS 在文本框中居中文本(垂直))
本文介绍了使用 CSS 在文本框中居中文本(垂直)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我目前正在使用具有背景的文本框.我想知道是否可以在文本框中将文本(垂直)居中.

I'm currently working with a textbox that has a background. I was wondering if it's possible to center text (vertically) inside the textbox.

重要:它在 Firefox 中完美居中.只有 IE 由于某种原因它写得太高了.我试过行高、填充和边距.没有任何效果.有什么想法吗?

important: it's perfectly centered in firefox. Only IE it writes it too high for some reason. I've tried line-height, padding, and margin. Nothing works. Any ideas?

这是我当前的 CSS.我应该说我已经尝试了 margin-top 方法,但它对我不起作用.另外,正如我所提到的,这仅适用于 IE.我有 IE 特定的样式表,所以不用担心.

This is my current CSS. I should say that I've tried the margin-top method and it didn't work for me. Also, as I mentioned, this is only for IE. I have IE specific style sheets so no worries.

.textValue { color: black; font-size: 12px; font-family: David, sans-serif; }
input { width: 110px; padding: 0 2px; padding-right: 4px; height: 20px; border: solid 1px white; margin-bottom: 0px; background: url(../images/contactTextBg.png) no-repeat top right; }
label { float: right; margin-left: 5px; font-size: 13px; }

对于 IE,我有以下内容:

For IE, I have the following:

.textValue { font-size: 14px; }

至于 HTML:

            <tr>
                <td><label for="name">name</label></td>
                <td><input type="text" name="name" id="name" class="textValue" value="" /></td>
            </tr>

谢谢,阿米特

推荐答案

我想知道你如何能够对齐文本框中的文本,但既然你说,这里是建议:

对于白痴 IE,你可以使用这个 IE 特定的 hack:

For idiot IE, you can use this IE specific hack:

margin-top:50px; /* for standard-compliant browsers */
*margin-top:50px; /* for idiot IE */
_margin-top:50px; /* for idiot IE */

如果您愿意,您可能想尝试其他类似的属性,而不是 margin-top.

You might want to try other similar properties if you want rather than margin-top.

这篇关于使用 CSS 在文本框中居中文本(垂直)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

quot;Each child in an array should have a unique key propquot; only on first time render of page(“数组中的每个孩子都应该有一个唯一的 key prop仅在第一次呈现页面时)
How do I make a TextGeometry multiline? How do I put it inside a square so it wraps like html text does inside a div?(如何制作 TextGeometry 多线?如何将它放在一个正方形内,以便它像 html 文本一样包裹在 div 内?) - IT屋-程序员软件开发技术分享社
Scale background image to fit ie8 window(缩放背景图像以适合 ie8 窗口)
@fontface in IE7 (IETEster) not working properly(IE7 (IETEster) 中的@fontface 无法正常工作)
Safari 5.1 breaks CSS table cell spacing(Safari 5.1 打破 CSS 表格单元格间距)
Put in bold part of description in metatag Drupal module(将描述的粗体部分放在元标记 Drupal 模块中)