在 ASP.NET 内容页面中需要帮助

发布于 2024-07-14 09:43:55 字数 243 浏览 6 评论 0原文

有人请帮助我如何将内容页面放在页面的中心。我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(4

撩发小公举 2024-07-21 09:43:55

左右边距上的 auto 值可以使 div 水平居中。 不幸的是,这不能垂直工作,因此您可能需要手动设置或动态检测屏幕分辨率。

<div id="loginBox">
..login form here
</div>

<style>
#loginBox {
  width:400px;
  height:300px;
  margin:400px auto 0px auto;
}
<style>

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.

<div id="loginBox">
..login form here
</div>

<style>
#loginBox {
  width:400px;
  height:300px;
  margin:400px auto 0px auto;
}
<style>
放我走吧 2024-07-21 09:43:55

正如其他海报所说,您需要使用 CSS 将 div 定位在屏幕中央。

这里有一些快速代码可以帮助您解决此问题。

div#centered {
    background-color: #eee; 
    border: 1px solid #ddd; 
    position: absolute; 
    left: 50%; 
    top: 50%;  
    width: 400px;  
    height: 300px; 
    margin-left: -200px;  
    margin-top: -150px;
}

它的用法:

<div id="centered"><!-- your login stuff --></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.

div#centered {
    background-color: #eee; 
    border: 1px solid #ddd; 
    position: absolute; 
    left: 50%; 
    top: 50%;  
    width: 400px;  
    height: 300px; 
    margin-left: -200px;  
    margin-top: -150px;
}

And it's usage:

<div id="centered"><!-- your login stuff --></div>
幼儿园老大 2024-07-21 09:43:55

将您的 contentplaceholder 放入

中,然后将 div 居中?

Put your contentplaceholder in a <div> and then center the div?

嗫嚅 2024-07-21 09:43:55

内容占位符是一个虚拟容器,它不会影响页面的可视化。 将其视为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文