为什么在浏览器上移动的框和图像会在this video中调整大小?
这是我的代码:
style="width: 98pt; position: fixed; left: 112pt; bottom: 175pt"
答案 0 :(得分:3)
它的设计很灵活。
如果您想了解更多相关信息,我推荐这本书:
Ethan Marcotte
答案 1 :(得分:0)
因为它们附着在容器的底部(身体标签可能?)
使用“top:### pt”而不是“bottom:175pt”。
我认为最好指定它的高度。
<body>
<div style="position:fixed; top: 50px; left: 50px; width: 100px; height: 100px;">content</div>
</body>