将按钮放置在底部中心的面板内(asp.net)

发布于 2024-12-16 12:32:55 字数 312 浏览 0 评论 0原文

我读到关于在 div 内居中(底部中心)按钮,这就像在面板内居中按钮一样。 我通过将其添加到按钮的 CSS 中成功地做到了这一点:

 position:absolute; 
  margin-left:50%;
  margin-right:50%;
  bottom:  5px; 

并且面板 css 属性是:

position:relative;

问题是它以按钮的左侧为中心,因此按钮本身具有整个宽度不居中。

如何使按钮中心居中,以便按钮看起来真正居中?

i read about centering (bottom-center) a button inside a div , which is like centering a button inside a panel.
i succeeded in doing that by adding this to the CSS of the button:

 position:absolute; 
  margin-left:50%;
  margin-right:50%;
  bottom:  5px; 

and the panel css property is:

position:relative;

The problem is that it centers the left side of the button, so the button itself with his whole width is not centered.

How do i center the center of the button, so it will look like the button is really centered?

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

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

发布评论

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

评论(3

明月夜 2024-12-23 12:32:55

例如,如果您有绝对位置,请像这样写:

button{
   position:absolute; 
   margin-left:-100px;
   left:50%;
   width:200px;
   bottom:5px;
}

注意:给出margin-lefthalf按钮的>宽度

For example write like this if you have position absolute:

button{
   position:absolute; 
   margin-left:-100px;
   left:50%;
   width:200px;
   bottom:5px;
}

Note: give margin-left half of the width of the button

叶落知秋 2024-12-23 12:32:55

而不是:

margin-left:50%;
margin-right:50%;

尝试

margin-left:auto;
margin-right:auto;

Instead of:

margin-left:50%;
margin-right:50%;

try

margin-left:auto;
margin-right:auto;
梦开始←不甜 2024-12-23 12:32:55

您应该使用

margin : 0 auto;

margin-leftmargin-right 来代替它,

它的意思是顶部和底部的边距为 0 px(您也可以设置它!),以及自动边距左右。它将居中,反对。

并删除 position :absulote;

实时示例

You should use

margin : 0 auto;

instead of margin-left and margin-right

It's mean is 0 px margin for top and bottom (you can set it too!!) , and auto margin for left and right. It will center, object.

And remove position : absulote;

live example

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