如何将swf对象居中?

时间:2015-05-12 09:14:46

标签: html css flash

我的瑞士法郎很敏感,所以很难集中,我希望找到并轻松地做到这一点。对象可以像img标记一样在css中居中吗?我测试了那个理论,但没有运气。我该如何制作这个代码中心?我是否有可以响应和集中的替代方案?

看起来像这样: enter image description here

以下内容没有帮助。     X                                               

1 个答案:

答案 0 :(得分:1)

尝试任何这些替代方案

css定位

.hdiv {
position: absolute; left: 0; top: 0; bottom: 0; right: 0; } object { position: absolute; left: 25%; top: 25%; width:50%; height: 50%; background:#000; }

flexbox方法

.hdiv {
display:flex; justify-content:center; align-items:center; height:100vh; } object {
background:#000; width:50%; height:50%; }
请注意,您需要为某些浏览器添加Flexbox类的前缀,并且语法可能不同,并且旧版浏览器也不支持vh。

css transform

.hdiv {
position: absolute; top: 50%; left: 50%;
background: #000; transform: translate(-50%,-50%);
}