在 ASP.NET 内容页面中需要帮助
有人请帮助我如何将内容页面放在页面的中心。我正在尝试使用 css 类,但内容没有 css 属性。在我的应用程序中,当我单击“登录详细信息”时,该页面应该在居中但在菜单项下打开。 这是我的代码:
Somebody please help me how to place the content page in center of the page.I am trying to do using css class but content doesn't have css property.In my application when i am clicking on LOGIN DETAILS , that page should open in the center but opening under the menu item.
Here is my code:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
左右边距上的 auto 值可以使 div 水平居中。 不幸的是,这不能垂直工作,因此您可能需要手动设置或动态检测屏幕分辨率。
The auto value on the left and right margins work to center the div horizontally. Unfortunately this doesn't work vertically, so you may need to set this manually or detected the screen resolution dynamically.
正如其他海报所说,您需要使用 CSS 将 div 定位在屏幕中央。
这里有一些快速代码可以帮助您解决此问题。
它的用法:
As the other posters have said, you will need to use CSS to position the div in the center of the screen.
Here's some quick code to help you with this.
And it's usage:
将您的 contentplaceholder 放入
中,然后将 div 居中?
Put your contentplaceholder in a
<div>
and then center the div?内容占位符是一个虚拟容器,它不会影响页面的可视化。 将其视为 LiteralControl。 因此,您应该设计 contentplaceholder 的周围元素。
Content place holder is a virtual container, it doesn't effect your page's visualization. Think it as a LiteralControl. So you should design your contentplaceholder's surrounding elements.