SVG Getting started with SVG

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

Scalable Vector Graphics (SVG) is a W3C standard for drawing vector images.

Here is a simple standalone SVG file:

<svg xmlns="http://www.w3.org/2000/svg">
    <circle cx="50" cy="50" r="25" fill="blue"/>
</svg>

SVG can also be embedded in HTML, in which case the xmlns attribute is not required.

Other graphical elements are:

  • <line>
  • <ellipse>
  • <path>
  • <polygon> and <polyline>
  • <text> including child elements such as <tspan> and <textPath>

CSS is used for styling although not all CSS properties apply to SVG and SVG itself defines some specific properties such as fill and stroke that are not used elsewhere.

Shapes can be filled with gradients or patterns and additional raster effects can be achieved using filters.

Clipping is available by using the above graphical elements as clip paths.

Regarding versions of the W3C SVG standard:

Versions

VersionRelease Date
1.02001-09-04
1.1 First edition2003-01-14
1.2 Tiny2008-12-22
1.1 Second edition2011-08-16

Inline SVG

Inline SVG allows SVG markup, written within HTML, to generate graphics in the browser.

When using SVG inline, a DOCTYPE is not strictly required. Instead just the <svg> opening and closing tags together with either a viewBox or width and height attributes will suffice:

<svg width="100%" height="100%">
    <!-- SVG elements go here -->
</svg>
 

The <svg> fragment above acts as both a container and a structural element. This fragment establishes its own coordinate system.

Below is an example of rendering an SVG fragment with some content. It will produce a rectangle with "Hello World!" text within it.

<svg width="50%" viewBox="0 0 10 10">
    <rect x="1" y="1" width="5" height="3" fill="teal" />
    <text x="2" y="2" font-family="Palatino, Georgia, serif" font-size="3%" font-weight="bold" fill="white">Hello World!</text>
</svg>
 

Result:

Simple SVG example output

SVG as a background image

You can display an SVG file within an HTML document, by specifying it as a background image in CSS. For example:

.element {
    background-size: 100px 100px;
    background: url(my_svg_file.svg);
    height: 100px;
    width: 100px;
}
 

If the dimensions specified in your SVG file are larger than the dimensions of your HTML element, it may be desirable to specify the background-size property, to scale the SVG to fit within its element.

As with using SVG as an <img> , it's worth noting some limitations with this approach:

  • Browser support doesn't include Internet Explorer 8 and earlier versions, nor Android 2.3 and earlier versions.
  • You can't style the individual elements contained within the SVG file using CSS which is external to the SVG file. All CSS must be within the image file itself.

SVG as an

You can render the contents of an SVG file as an image within an HTML document using an <img> tag. For example:

<img src="my_svg_file.svg" alt="Image description">
 

The dimensions of the image will, by default, display according to the width and height properties specified in the SVG file referenced in the src attribute.

It's worth noting various limitations inherent in this approach:

  • Browser support, whilst good, doesn't include Internet Explorer 8 and earlier versions, nor Android 2.3 and earlier versions.
  • You can't style the individual elements contained within the SVG file using CSS which is external to the SVG file. All CSS must be within the image file itself.
  • JavaScript won't run.
  • The image must be complete in a single file. For example, if the SVG file contains raster images then those internal images must be encoded as data URLs.


Got any SVG Question?