将我的 O3D 画布居中
我想要一个居中的 O3D 画布。谁能建议我如何做到这一点?
I would like to have a centered O3D canvas. Can anyone suggest how I might do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想要一个居中的 O3D 画布。谁能建议我如何做到这一点?
I would like to have a centered O3D canvas. Can anyone suggest how I might do this?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
而不是写:
你写:
O3D 将自身插入到 id 以“o3d”开头的 div 中。您应用于 div 的任何样式本质上都会应用于 O3D 对象。
margin:0 auto;
只是意味着您想要 0 垂直边距并且您想要平衡的水平边距。Instead of writing:
You write:
O3D inserts itself into the div's that have id's starting with "o3d". Any styling that you apply to the div, is essentially applied to the O3D object.
margin:0 auto;
just means that you want 0 vertical margin and you want balanced horizontal margin.