Yourbr"/>
Yourbr">
Home >Web Front-end >HTML Tutorial >In HTML, enable additional restricted collections for content?
Use the sandbox attribute to enable an additional set of restrictions for content
You can try running the following code to implement the Sandbox attribute -
<!DOCTYPE html> <html> <body> <iframe src = "new.htm" sandbox> <p>Your browser does not support iframes.</p> </iframe> </body> </html>
The above is the detailed content of In HTML, enable additional restricted collections for content?. For more information, please follow other related articles on the PHP Chinese website!