将按钮放置在底部中心的面板内(asp.net)
我读到关于在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
例如,如果您有
绝对位置
,请像这样写:注意:给出
margin-left
half
的按钮的>宽度
For example write like this if you have
position absolute
:Note: give
margin-left
half
of thewidth
of thebutton
而不是:
尝试
Instead of:
try
您应该使用
margin-left
和margin-right
来代替它,它的意思是顶部和底部的边距为 0 px(您也可以设置它!),以及自动边距左右。它将居中,反对。
并删除
position :absulote;
实时示例
You should use
instead of
margin-left
andmargin-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