本文介绍了< object>响应宽度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的固定版本站点中,我有:
In my fixed version site I have :
<object type="application/x-shockwave-flash" data="uppod.swf" width="560" height="370">
项目标签< object>
如何响应?
object{
width:100%;
max-height:100%;
}
它不起作用.
如何更改属性 width ="560" height ="370"
?
推荐答案
在此处删除width和height属性:
Remove width and height attributes here:
<object type="application/x-shockwave-flash" data="uppod.swf">
和CSS:
object {
width:100%;
max-height:100%;
}
这篇关于< object>响应宽度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!