Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个居中的 O3D 画布。谁能建议我如何做到这一点?
而不是写:
<div id="o3d" style="width: 600px; height: 600px;"></div>
你写:
<div id="o3d" style="width: 600px; height: 600px; margin:0 auto;"></div>
O3D 将自身插入到 id 以“o3d”开头的 div 中。应用于 div 的任何样式基本上都应用于 O3D 对象。margin:0 auto;只是意味着你想要 0 垂直边距并且你想要平衡的水平边距。
margin:0 auto;