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.
我试图给身体一些宽度,并尝试使用下面的代码将它与屏幕对齐
body{ width : 75%; float : right; }
它不仅在 IE 中工作。我该如何解决..?默认情况下,它向左对齐。
浮动你的身体是没有意义的,因为它是 DOM 树的顶部操作。它会漂浮在什么地方?
如果你想给人一种你的身体只占据屏幕右侧 75% 的印象,请添加一个边距。
body { margin-left: 25%; }
这将起作用。
如果这是不可接受的,请在您的内容周围使用 div。