文本的垂直对齐样式
您好,我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用怎么样
在父元素上
What about using
On the parent element
在 css 中为保存文本的元素设置
display: table-cell
和vertical-align: center
。Set
display: table-cell
andvertical-align: center
in the css for the elements that hold the text.您需要在 DIV 中创建一个 html 表。
然后您可以在
中使用
valign
。如果您需要进一步说明,您需要发布您的 html,以便我们可以帮助
示例代码:
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: