jQuery .css border-radius 不适用于位置:绝对?
我有一系列图像可以进行画廊类型的显示。我使用 jQuery 将它们制成圆形,每个直径具有随机直径。
它工作得很好,但我需要正确放置它们。问题在于,为包含图像的
赋予 position:absolute
(或任何类型的位置)会改变
代码> 变回正方形。有解决办法吗?我做错了什么吗?
我做了一个小提琴来使代码清晰
I have a series of images that makes a gallery-type of display. I use jQuery to make them round with a random diameter for each.
It works perfectly fine, but then I need to place them correctly. The problem is that giving the <div>
that contains the image a position:absolute
(or any kind of position) turns the <div>
back into a square.
Is there a fix? Am I doing something wrong?
I made a Fiddle to make the code clear.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在每个图像周围放置一个包装器
似乎可以解决它......
http ://jsfiddle.net/szGnh/21/
Putting a wrapper
<div>
around each image, seems to solve it...http://jsfiddle.net/szGnh/21/