怎样才能在div里插入一个flash然后用css定位?
<divid="flash">#flash{width:200px;height:100px;}flash的大小为width="100px"height="50px"我要...
<div id="flash">
#flash{width:200px;height:100px;}
flash的大小为width="100px" height="50px"
我要使flash在div里水平右对齐 垂直用像素定位,如何能办到?
我用text-align无效,padding定位后在DW里能看到效果,但运行浏览还是在顶部。 展开
#flash{width:200px;height:100px;}
flash的大小为width="100px" height="50px"
我要使flash在div里水平右对齐 垂直用像素定位,如何能办到?
我用text-align无效,padding定位后在DW里能看到效果,但运行浏览还是在顶部。 展开
2个回答
展开全部
你这是一个层,应该在这个DIV的外部再加上一个父层div,用于固定你的这个div。
比如:
<div style="position:relative" id="sss">
<div id="flash" style="position:absolute; z-index:1;left:6px; top:6px;">
……
……
</div>
</div>
这样来固定,注意relative和absolute不要搞反了,用left和top或者right,bottom来定义相对位置。
楼上的那种方法是无法固定住在不同分辩率中的层的,除非处于最边边。
比如:
<div style="position:relative" id="sss">
<div id="flash" style="position:absolute; z-index:1;left:6px; top:6px;">
……
……
</div>
</div>
这样来固定,注意relative和absolute不要搞反了,用left和top或者right,bottom来定义相对位置。
楼上的那种方法是无法固定住在不同分辩率中的层的,除非处于最边边。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询