如何将div中的对象内容居中?
.parent{
background-color:yellow;
}
.ob{
margin: 0 auto;
}
</style>
<div class="parent">
<object width="400" height="400" class="ob" data="helloworld.swf">
</object>
</div>
提前致谢!
答案 0 :(得分:5)
答案 1 :(得分:1)
或者这是因为object
是一个内联元素。
.parent{
text-align: center;
}
如果你想变得现代化。
.parent{
background-color:yellow;
display: flex;
justify-content:center
}