在 CSS 中将列表项旋转 90 度表现得很奇怪
I am attempting to rotate an unordered list in CSS3. Here's a fiddle:
The list items disappear. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
I am attempting to rotate an unordered list in CSS3. Here's a fiddle:
The list items disappear. Any ideas?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您必须考虑元素的
transform-origin
,将其更改为:保持列表项可见,尽管它们在 Chromium 中出现,但在左侧完全堆叠在一起。 JS 小提琴。
参考:
transform-origin
。You have to consider the
transform-origin
of the elements, changing it to:keeps the list items visible, albeit they appear, in Chromium, entirely stacked upon each other to the left. JS Fiddle.
Reference:
transform-origin
at MDC.