我有一个RSS提要,我想切断它的具体部分。
这是iframe ..
<iframe src="http://rss.ighome.com/gadgets/rss.aspx?desc=1&count=9&color=000&fs=12px&fw=bold&refresh=0&url=http%3a%2f%2fnews.yahoo.com%2frss%2f"
width="500"
height="400px">
</iframe>
如果向下滚动到RSS源的底部,则会出现一个单词&#34; More&#34;我想要削减。我怎么能这样做?
答案 0 :(得分:0)
您无法控制iframe
的内容,但您可以在其上放置一些内容,以便隐藏链接。
像this:
<强> HTML 强>
<div id="iframe-wrapper">
<iframe src="http://rss.ighome.com/gadgets/rss.aspx?desc=1&count=9&color=000&fs=12px&fw=bold&refresh=0&url=http%3a%2f%2fnews.yahoo.com%2frss%2f" width="500" height="400px"></iframe>
<div id="iframe-overlay"></div>
</div>
<强> CSS 强>
#iframe-wrapper {
position:relative;
}
#iframe-overlay { /* Adjust values as needed */
height:17px;
width:480px;
background-color:#fff;
position:relative;
top:-24px;
left:5px;
}