开发者

SVG to HTML/CSS

Well I have an SVG file named 7.svg.

How can 开发者_开发问答I display the image with HTML or CSS in my index.html?


Well you can do this in three different ways.

Using the <embed> Tag

<embed src="7.svg" width="300" height="100"
type="image/svg+xml"
pluginspage="http://www.adobe.com/svg/viewer/install/" />

Using the <object> Tag

<object data="7.svg" width="300" height="100"
type="image/svg+xml"
codebase="http://www.adobe.com/svg/viewer/install/" />

Using the <iframe> Tag

<iframe src="7.svg" width="300" height="100">
</iframe>

Tell me which one works out for you. Please run it on differnt browsers and let me know.

HTML 5 info:

Since your are using HTML 5 you probably wanna check out this: http://www.whatwg.org/specs/web-apps/current-work/#svg Its still under work and is partially implemented in Firefox, Safari, Opera (xhtml5 serialization only)

https://developer.mozilla.org/en/svg_in_html_introduction


Add this somehwere in your html file

<embed src="7.svg" width="300" height="100"
type="image/svg+xml"
pluginspage="http://www.adobe.com/svg/viewer/install/" />

taken from w3schools


<img> tags support SVG. Just add <img src="/path/to/svg.svg"> to the page.

Example.

SVG to HTML/CSS

Take control of the size with CSS.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜