Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (398)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Use SVG Images in IFRAME Tags
How to Use SVG Images in HTML <iframe> Tags?
✍: FYIcenter.com
If you want to use SVG images in HTML <iframe> Tags, you can save SVG images in .svg files and include SVG image file names in the "src" attribute of <embed> Tags.
You can follow this tutorial to test this.
1. Save the following SVG image in a file called, circle.svg:
<svg xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50"/> </svg>
2. Save the following HTML document in another file called, iframe.html:
<html><body> <p>Black <iframe src="/circle.svg"></iframe> Circle... </p> </body></html>
When you open the above HTML file, iframe.html, in a Web browser, you see a black circle inserted inside a text line.
Similar to square.html in the previous tutorial, extra white spaces are padded below and after image. The the 100px x 100px circle occupied an area of 300px x 150px.
See next tutorial on how to remove padded space around the SVG image.
Also note that, an empty IFRAME tag should coded as <object ...></iframe>, not <iframe .../>.
⇐ Use SVG Images in EMBED Tags
2022-12-03, 414🔥, 0💬
Popular Posts:
What is this Website about? This Website provides a collection of Frequently Asked Questions (FAQ) a...
What are Mozilla Firefox 2 add-ons? Mozilla Firefox 2 add-ons extend the browser functionalities. So...
How to log in to Microsoft Teams with a Web browser? I know that my company is using Microsoft Teams...
What is the difference between a Web page and a filtered Web page? Word supports 2 Web page formats:...
What are URL:sfb and URL:lync15 Protocols? URL:sfb and URL:lync15 protocols are special network prot...