令人尴尬的是,我不能得到一个div来获取背景颜色

时间:2017-06-28 18:36:39

标签: html css

我想要的是让iframe覆盖屏幕的90%并在底部添加一些按钮,我需要在div上覆盖底部10%的背景颜色但是我无法让css工作。我哪里错了?

<iframe src="http://tttdev.throughtheturnstile.com" style="width:100%; height:90%;position: absolute;" frameBorder="0"></iframe>
<div style="clear:both"></div>
<div style="position: absolute; bottom:0; background-color: black; height: 50px;"></div>

似乎创造了div,只是没有风格......

1 个答案:

答案 0 :(得分:1)

没有显示,因为div没有宽度。你可以做两件事之一,让div显示放在div里面的东西或给div一个宽度和高度。而你最有可能需要的就是给div一个宽度和高度。这应该有用。

<div style="position: absolute; bottom:0; background-color: black; width: 100%; height: 50px;"></div>