I am trying to adjust the height of a YouTube video that is embedded in my webpage. After going through various threads, I found that adding an additional div outside the iframe element can solve this issue. However, the iframe element is already enclosed within a p tag which is fetched from the backend.
Here is my current HTML code:
<p class="richTextBox" ng-bind-html="getHtml(question.answer)"></p>
https://i.sstatic.net/bWHkx.png
Is there a way to use CSS to modify the iframe that is embedded within the ng-bind-html? Any suggestions would be greatly appreciated. Thank you!