我有一个iframe显示广告。通过查看边框,我可以看到iframe全屏,但内容不是。
内容是在php
中显示的数据库内容这是我的代码:
样式:
<style>
.slideshow {
display: none;
}
#slideshow :first-child {
display: block;
}
</style>
<style>
iframe {
/* Set rules to fill background */
min-height: 100%;
min-width: 1024px;
/* Set up proportionate scaling */
width: 100%;
height: 100%;
/* Set up positioning */
position: fixed;
}
</style>
iFrame(在php中)
echo "<iframe src='/$adslist'>Your browser doesnt support iframes</iframe>";