我有一个页面,其中包含一个脚本标记,该标记从JotForm中提取调查表单。基本上在HTML中放置一个标签来自第三方的内容,这是一种形式。引入的代码是一个完整的页面,即:包含包含iframe的html元素。
问题是有一个名为form-all的类,其宽度设置为690,不适合我们的站点,它太宽,所以切断。
我需要知道如何从mytml代码中删除form-all类的宽度?
结构类似于:
<html> <!-- My html element //-->
...
...
<html> <!-- html element pulled in from 3rd party code, everything within is 3rd party //-->
<iframe>
<div class='form-all'>
</div>
</iframe>
</html>
</html>
如何通过在我控制的代码中放置代码来删除form-all上的宽度?
感谢。
答案 0 :(得分:1)