更改嵌入式iframe youtubevid的高度

时间:2017-05-21 10:55:52

标签: html css angularjs iframe

我想更改嵌入式youtube vid的高度。我已经阅读了很多线程,解决方案似乎是在iframe元素之外添加了一个额外的div。我的问题是元素是从后端获取的,并且已经在p标签内。

这是我的HTML

    <p class="richTextBox" ng-bind-html="getHtml(question.answer)"></p>

This is what is fetched from the backend

如何使用css更改ng-bind-html中嵌入的iframe? 谢谢!

1 个答案:

答案 0 :(得分:0)

<p class="container">
  <iframe src="" frameborder="0" width=100%; height= 100% ></iframe>
</p>


.container{
  height: 200px;
  width: 300px;
  border: 1px solid red;
}

尝试这应该有用。因为Iframe将取父母的身高和宽度。