Centering text (vertically) inside a textbox using CSS

后端 未结 3 656
被撕碎了的回忆
被撕碎了的回忆 2021-01-12 17:42

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.

important

3条回答
  •  臣服心动
    2021-01-12 18:23

    I wonder how you are able to align the text in a textbox but since you say, here is the suggestion:

    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 */
    

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

提交回复
热议问题