文本的垂直对齐样式

发布于 2024-09-02 10:04:53 字数 176 浏览 5 评论 0原文

您好,我正在开发一个 ASP.NET\ c# 应用程序;

我有一个页面,底部有一个 div,只是为了向最终用户显示错误\成功消息。 这些消息进入该 div 内的 asp 标签。 我需要将这些消息垂直对齐,但到目前为止我还没有成功。 垂直对齐似乎不适用于 IE。

有什么建议吗?

tks

Hi there I'm working on an ASP.NET\ c# app;

I have a page with a div at the bottom just to show error\success messages to end user.
These messages go into an asp label inside this div.
I need those messages to be vertically aligned and so far i had no success.
Vertical- align doesn't seem to work with IE.

Any tip on that?

tks

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

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

发布评论

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

评论(3

忆悲凉 2024-09-09 10:04:53

使用怎么样

line-height: /*parent height*/ 

在父元素上

What about using

line-height: /*parent height*/ 

On the parent element

万劫不复 2024-09-09 10:04:53

在 css 中为保存文本的元素设置 display: table-cellvertical-align: center

Set display: table-cell and vertical-align: center in the css for the elements that hold the text.

花心好男孩 2024-09-09 10:04:53

您需要在 DIV 中创建一个 html 表。
然后您可以在 中使用 valign

如果您需要进一步说明,您需要发布您的 html,以便我们可以帮助

示例代码:

<div>
    <table id="id1" cellspacing="0" cellpadding="0" width="100%" border="0">
    <tr>
          <td width="100%" valign="middle">Your message goes here....</td>
    </tr>
    </table>
</div>

You will need to create an html table inside your DIV.
Then you can use the valign within the <td>.

If you need further illustration, you need to post your html so that we can help

Sample code:

<div>
    <table id="id1" cellspacing="0" cellpadding="0" width="100%" border="0">
    <tr>
          <td width="100%" valign="middle">Your message goes here....</td>
    </tr>
    </table>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文