I keep running into rendering problems when working with .svg files. Text especially will not render will, as font sizes are nearly impossible to specify from inkscape.
Your page validates as HTML 5, nice! Is the "plugin" attribute needed in the embed tag? What happens without it. I thought SVG was natively supported by all modern browsers (which means all but IE).
.svg files made in inkscape aren't easily embedded in html. inkscape creates <svg (or <path or <filter or...) tags, what are needed to embed directly are <svg:svg tags. Technically, I would be able to replace each <svg tag with <svg:svg (or each <path with <svg:path) but for the complex images I am making, it is extremely painstaking.
Your page validates as HTML 5, nice! Is the "plugin" attribute needed in the embed tag? What happens without it. I thought SVG was natively supported by all modern browsers (which means all but IE).
ReplyDelete.svg files made in inkscape aren't easily embedded in html. inkscape creates <svg (or <path or <filter or...) tags, what are needed to embed directly are <svg:svg tags. Technically, I would be able to replace each <svg tag with <svg:svg (or each <path with <svg:path) but for the complex images I am making, it is extremely painstaking.
ReplyDelete