我正在尝试将 div 置于另一个 div 的中心
这里是我正在使用的示例。如果可能的话,我希望不使用任何 javascript,如果绝对需要并且没有其他可能的解决方案,我将使用 jQuery。
我试图居中的 3 个内部 div 就是一个例子。在最终结果中,这些是由脚本生成的,因此我不知道在 .circle 类中使用负 px 大小作为边距的宽度或高度。
我愿意改变 div 的结构,但我正在寻找一些干净简单的东西,尽管我宁愿改变结构而不是使用 javascript。
FF4、Safari(iOS)/Chrome、IE9 是我的最终目标。
编辑:
这是我想要的最终结果,但它使用jquery 。
丹的回答也有效。它让生成脚本承担计算负边距的责任。我认为这最终是可以接受的,但我希望我必须提供的只是所需的大小,而不是生成脚本中的任何与定位相关的信息。
@thirtydot - 现在,没有。我正在手工编码。最后,这将由 PHP 或 C# 生成,具体取决于我的服务器平台。
Here is the sample I'm working with. I would like to not use any javascript if possible, and if absolutely required with no other solutions possible I would use jQuery.
The 3 inner divs I'm trying to center are an example. In the end result, these are generated by script so I wont know the width or height to use a negative px size for the margin's in the .circle class.
I'd be willing to change the structure of the div's but I'm looking for something clean and simple, though I would rather change the structure than use javascript.
FF4, Safari(iOS)/Chrome, IE9 are my end targets.
edit:
This is the end result I would like, but its using jquery.
Dan's answer would work as well. It puts the onus on the generating script to calculate the negative margins. This would be acceptable in the end I think but I was hoping that all I would have to provide would be the desired size and not any positioning related information from the generating script.
@thirtydot - Right now, none. I'm coding by hand. in the end this would be generated by either PHP or c# depending on my server platform.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在与尺寸相同的位置生成负边距:
Generate negative margins in the same place as the sizes:
以 margin: 0 auto 居中。
您不需要提前知道宽度,只要明确设置它们即可。
Center with margin: 0 auto.
You don't need to know the width's ahead of time, as long as they are set explicitly.
如果归根结底,这里有一些 jQuery 操作来完成工作。
演示: jsfiddle.net/Marcel/7ucme
Well if it comes down to it, here's some jQuery action to get the job done.
Demo: jsfiddle.net/Marcel/7ucme