从内部更改iFrame属性和CSS

时间:2012-10-31 10:40:05

标签: html css iframe

是否可以在src文件中更改iframe CSS或属性?

我想制作一个iframe unstyle,以便any1可以复制该代码并将其粘贴到他们的网站上......类似于Feed ......

2 个答案:

答案 0 :(得分:1)

所有iframe css属性

iframe{
margin: 0;
madding: 0;
border: none;
width: value;
height: value;
}

答案 1 :(得分:0)

不,不是。您应该从主页面更改CSS属性。

iframe {
  border: 0; /* this will work in the main page, but not in the src file */
}