这里有什么问题怎么克服呢?
HTML
<div ID="slIDer"><img src="http://oi43.tinypic.com/25k319l.jpg" /></div><div ID="content"><div ID="text"> samplle text </div></div>
CSS
#slIDer { position:absolute; left:0; height:400px;}#slIDer img { wIDth:100%;}#content { position:relative;}#content #text { position:relative; wIDth:950px; height:215px; color:red;}
JSFIDDLE
解决方法 由于您将#slIDer设置为绝对值,所以内容div相对于slIDer div放置.如果将两者都设置为relative,那么div将会一个接一个,如下所示:
#slIDer { position:relative; left:0; height:400px; border-style:solID; border-wIDth:5px;}#slIDer img { wIDth:100%;}#content { position:relative;}#content #text { position:relative; wIDth:950px; height:215px; color:red;}
http://jsfiddle.net/CaZY7/18/
总结以上是内存溢出为你收集整理的html – 如何将div放在另一个div之下?全部内容,希望文章能够帮你解决html – 如何将div放在另一个div之下?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)