How to use sandbox attribute value ( allow-orientation-lock ) with < iframe > tag in HTML ? with example
How to use sandbox attribute value ( allow-orientation-lock ) with < iframe > tag in HTML ? with example
Sandbox attribute value allow-orientation-lock use to
Allows to lock the screen orientation.
Example
<body>
<iframe src="iframesandbox_demo.html"
sandbox="allow-orientation-lock ">
</iframe>
</body>
Comments
Post a Comment