SvgTags

trait SvgTags
class Object
trait Matchable
class Any

Value members

Concrete methods

def svgTag[Ref <: Element](key: String): SvgTag[Ref]

Create SVG tag

Create SVG tag

Note: this simply creates an instance of HtmlTag.

  • This does not create the element (to do that, call .apply() on the returned tag instance)
Type parameters:
Ref
  • type of elements with this tag, e.g. dom.svg.Circle for "circle" tag
Value parameters:
tagName
  • e.g. "circle"

Concrete fields

lazy val a: SvgTag[SVGAElement]

Represents a hyperlink, linking to another resource.

lazy val altGlyph: SvgTag[SVGElement]

The altGlyph element allows sophisticated selection of the glyphs used to render its child character data.

The altGlyph element allows sophisticated selection of the glyphs used to render its child character data.

See also:
lazy val altGlyphDef: SvgTag[SVGElement]

The altGlyphDef element defines a substitution representation for glyphs.

The altGlyphDef element defines a substitution representation for glyphs.

See also:
lazy val altGlyphItem: SvgTag[SVGElement]

The altGlyphItem element provides a set of candidates for glyph substitution by the altGlyph element.

The altGlyphItem element provides a set of candidates for glyph substitution by the altGlyph element.

See also:
lazy val animate: SvgTag[SVGElement]

The animate element is put inside a shape element and defines how an attribute of an element changes over the animation

The animate element is put inside a shape element and defines how an attribute of an element changes over the animation

See also:
lazy val animateMotion: SvgTag[SVGElement]

The animateMotion element causes a referenced element to move along a motion path.

The animateMotion element causes a referenced element to move along a motion path.

See also:
lazy val animateTransform: SvgTag[SVGElement]

The animateTransform element animates a transformation attribute on a target element, thereby allowing animations to control translation, scaling, rotation and/or skewing.

The animateTransform element animates a transformation attribute on a target element, thereby allowing animations to control translation, scaling, rotation and/or skewing.

See also:
lazy val circle: SvgTag[SVGCircleElement]

The circle element is an SVG basic shape, used to create circles based on a center point and a radius.

The circle element is an SVG basic shape, used to create circles based on a center point and a radius.

See also:
lazy val clipPathTag: SvgTag[SVGClipPathElement]

The clipping path restricts the region to which paint can be applied. Conceptually, any parts of the drawing that lie outside of the region bounded by the currently active clipping path are not drawn.

The clipping path restricts the region to which paint can be applied. Conceptually, any parts of the drawing that lie outside of the region bounded by the currently active clipping path are not drawn.

See also:
lazy val colorProfileTag: SvgTag[SVGElement]

The element allows describing the color profile used for the image.

The element allows describing the color profile used for the image.

See also:
lazy val cursor: SvgTag[SVGElement]

The cursor element can be used to define a platform-independent custom cursor. A recommended approach for defining a platform-independent custom cursor is to create a PNG image and define a cursor element that references the PNG image and identifies the exact position within the image which is the pointer position (i.e., the hot spot).

The cursor element can be used to define a platform-independent custom cursor. A recommended approach for defining a platform-independent custom cursor is to create a PNG image and define a cursor element that references the PNG image and identifies the exact position within the image which is the pointer position (i.e., the hot spot).

See also:
lazy val defs: SvgTag[SVGDefsElement]

SVG allows graphical objects to be defined for later reuse. It is recommended that, wherever possible, referenced elements be defined inside of a defs element. Defining these elements inside of a defs element promotes understandability of the SVG content and thus promotes accessibility. Graphical elements defined in a defs will not be directly rendered. You can use a use element to render those elements wherever you want on the viewport.

SVG allows graphical objects to be defined for later reuse. It is recommended that, wherever possible, referenced elements be defined inside of a defs element. Defining these elements inside of a defs element promotes understandability of the SVG content and thus promotes accessibility. Graphical elements defined in a defs will not be directly rendered. You can use a use element to render those elements wherever you want on the viewport.

See also:
lazy val desc: SvgTag[SVGDescElement]

Each container element or graphics element in an SVG drawing can supply a desc description string where the description is text-only. When the current SVG document fragment is rendered as SVG on visual media, desc elements are not rendered as part of the graphics. Alternate presentations are possible, both visual and aural, which display the desc element but do not display path elements or other graphics elements. The desc element generally improve accessibility of SVG documents

Each container element or graphics element in an SVG drawing can supply a desc description string where the description is text-only. When the current SVG document fragment is rendered as SVG on visual media, desc elements are not rendered as part of the graphics. Alternate presentations are possible, both visual and aural, which display the desc element but do not display path elements or other graphics elements. The desc element generally improve accessibility of SVG documents

See also:
lazy val ellipse: SvgTag[SVGEllipseElement]

The ellipse element is an SVG basic shape, used to create ellipses based on a center coordinate, and both their x and y radius.

The ellipse element is an SVG basic shape, used to create ellipses based on a center coordinate, and both their x and y radius.

Ellipses are unable to specify the exact orientation of the ellipse (if, for example, you wanted to draw an ellipse titled at a 45 degree angle), but can be rotated by using the transform attribute.

See also:
lazy val feBlend: SvgTag[SVGFEBlendElement]

The feBlend filter composes two objects together ruled by a certain blending mode. This is similar to what is known from image editing software when blending two layers. The mode is defined by the mode attribute.

The feBlend filter composes two objects together ruled by a certain blending mode. This is similar to what is known from image editing software when blending two layers. The mode is defined by the mode attribute.

See also:
lazy val feColorMatrix: SvgTag[SVGFEColorMatrixElement]

This filter changes colors based on a transformation matrix. Every pixel's color value (represented by an [R,G,B,A] vector) is matrix multiplied to create a new color.

This filter changes colors based on a transformation matrix. Every pixel's color value (represented by an [R,G,B,A] vector) is matrix multiplied to create a new color.

See also:
lazy val feComponentTransfer: SvgTag[SVGComponentTransferFunctionElement]

The color of each pixel is modified by changing each channel (R, G, B, and A) to the result of what the children feFuncR, feFuncB, feFuncG, and feFuncA return.

The color of each pixel is modified by changing each channel (R, G, B, and A) to the result of what the children feFuncR, feFuncB, feFuncG, and feFuncA return.

See also:
lazy val feComposite: SvgTag[SVGFECompositeElement]

This filter primitive performs the combination of two input images pixel-wise in image space using one of the Porter-Duff compositing operations: over, in, atop, out, xor. Additionally, a component-wise arithmetic operation (with the result clamped between [0..1]) can be applied.

This filter primitive performs the combination of two input images pixel-wise in image space using one of the Porter-Duff compositing operations: over, in, atop, out, xor. Additionally, a component-wise arithmetic operation (with the result clamped between [0..1]) can be applied.

See also:
lazy val feConvolveMatrix: SvgTag[SVGFEConvolveMatrixElement]

the feConvolveMatrix element applies a matrix convolution filter effect. A convolution combines pixels in the input image with neighboring pixels to produce a resulting image. A wide variety of imaging operations can be achieved through convolutions, including blurring, edge detection, sharpening, embossing and beveling.

the feConvolveMatrix element applies a matrix convolution filter effect. A convolution combines pixels in the input image with neighboring pixels to produce a resulting image. A wide variety of imaging operations can be achieved through convolutions, including blurring, edge detection, sharpening, embossing and beveling.

See also:
lazy val feDiffuseLighting: SvgTag[SVGFEDiffuseLightingElement]

This filter primitive lights an image using the alpha channel as a bump map. The resulting image, which is an RGBA opaque image, depends on the light color, light position and surface geometry of the input bump map.

This filter primitive lights an image using the alpha channel as a bump map. The resulting image, which is an RGBA opaque image, depends on the light color, light position and surface geometry of the input bump map.

See also:
lazy val feDisplacementMap: SvgTag[SVGFEDisplacementMapElement]

This filter primitive uses the pixels values from the image from in2 to spatially displace the image from in.

This filter primitive uses the pixels values from the image from in2 to spatially displace the image from in.

See also:
lazy val feDistantLighting: SvgTag[SVGFEDistantLightElement]

This filter primitive define a distant light source that can be used within a lighting filter primitive: feDiffuseLighting or feSpecularLighting.

This filter primitive define a distant light source that can be used within a lighting filter primitive: feDiffuseLighting or feSpecularLighting.

See also:
lazy val feFlood: SvgTag[SVGFEFloodElement]

The filter fills the filter subregion with the color and opacity defined by flood-color and flood-opacity.

The filter fills the filter subregion with the color and opacity defined by flood-color and flood-opacity.

See also:
lazy val feFuncA: SvgTag[SVGFEFuncAElement]

This filter primitive defines the transfer function for the alpha component of the input graphic of its parent feComponentTransfer element.

This filter primitive defines the transfer function for the alpha component of the input graphic of its parent feComponentTransfer element.

See also:
lazy val feFuncB: SvgTag[SVGFEFuncBElement]

This filter primitive defines the transfer function for the blue component of the input graphic of its parent feComponentTransfer element.

This filter primitive defines the transfer function for the blue component of the input graphic of its parent feComponentTransfer element.

See also:
lazy val feFuncG: SvgTag[SVGFEFuncGElement]

This filter primitive defines the transfer function for the green component of the input graphic of its parent feComponentTransfer element.

This filter primitive defines the transfer function for the green component of the input graphic of its parent feComponentTransfer element.

See also:
lazy val feFuncR: SvgTag[SVGFEFuncRElement]

This filter primitive defines the transfer function for the red component of the input graphic of its parent feComponentTransfer element.

This filter primitive defines the transfer function for the red component of the input graphic of its parent feComponentTransfer element.

See also:
lazy val feGaussianBlur: SvgTag[SVGFEGaussianBlurElement]

The filter blurs the input image by the amount specified in stdDeviation, which defines the bell-curve.

The filter blurs the input image by the amount specified in stdDeviation, which defines the bell-curve.

See also:
lazy val feImage: SvgTag[SVGFEImageElement]

The feImage filter fetches image data from an external source and provides the pixel data as output (meaning, if the external source is an SVG image, it is rasterize).

The feImage filter fetches image data from an external source and provides the pixel data as output (meaning, if the external source is an SVG image, it is rasterize).

See also:
lazy val feMerge: SvgTag[SVGFEMergeElement]

The feMerge filter allows filter effects to be applied concurrently instead of sequentially. This is achieved by other filters storing their output via the result attribute and then accessing it in a feMergeNode child.

The feMerge filter allows filter effects to be applied concurrently instead of sequentially. This is achieved by other filters storing their output via the result attribute and then accessing it in a feMergeNode child.

See also:
lazy val feMergeNode: SvgTag[SVGFEMergeNodeElement]

The feMergeNode takes the result of another filter to be processed by its parent feMerge.

The feMergeNode takes the result of another filter to be processed by its parent feMerge.

See also:
lazy val feMorphology: SvgTag[SVGFEMorphologyElement]

This filter is used to erode or dilate the input image. It's usefulness lies especially in fattening or thinning effects.

This filter is used to erode or dilate the input image. It's usefulness lies especially in fattening or thinning effects.

See also:
lazy val feOffset: SvgTag[SVGFEOffsetElement]

The input image as a whole is offset by the values specified in the dx and dy attributes. It's used in creating drop-shadows.

The input image as a whole is offset by the values specified in the dx and dy attributes. It's used in creating drop-shadows.

See also:
lazy val feSpecularLighting: SvgTag[SVGFESpecularLightingElement]

This filter primitive lights a source graphic using the alpha channel as a bump map. The resulting image is an RGBA image based on the light color. The lighting calculation follows the standard specular component of the Phong lighting model. The resulting image depends on the light color, light position and surface geometry of the input bump map. The result of the lighting calculation is added. The filter primitive assumes that the viewer is at infinity in the z direction.

This filter primitive lights a source graphic using the alpha channel as a bump map. The resulting image is an RGBA image based on the light color. The lighting calculation follows the standard specular component of the Phong lighting model. The resulting image depends on the light color, light position and surface geometry of the input bump map. The result of the lighting calculation is added. The filter primitive assumes that the viewer is at infinity in the z direction.

See also:
lazy val feTile: SvgTag[SVGFETileElement]

An input image is tiled and the result used to fill a target. The effect is similar to the one of a pattern.

An input image is tiled and the result used to fill a target. The effect is similar to the one of a pattern.

See also:
lazy val feTurbulence: SvgTag[SVGFETurbulenceElement]

This filter primitive creates an image using the Perlin turbulence function. It allows the synthesis of artificial textures like clouds or marble.

This filter primitive creates an image using the Perlin turbulence function. It allows the synthesis of artificial textures like clouds or marble.

See also:
lazy val filter: SvgTag[SVGFilterElement]

The filter element serves as container for atomic filter operations. It is never rendered directly. A filter is referenced by using the filter attribute on the target SVG element.

The filter element serves as container for atomic filter operations. It is never rendered directly. A filter is referenced by using the filter attribute on the target SVG element.

See also:
lazy val font: SvgTag[SVGElement]

The font element defines a font to be used for text layout.

The font element defines a font to be used for text layout.

See also:
lazy val fontFace: SvgTag[SVGElement]

The font-face element corresponds to the CSS @font-face declaration. It defines a font's outer properties.

The font-face element corresponds to the CSS @font-face declaration. It defines a font's outer properties.

See also:
lazy val fontFaceFormat: SvgTag[SVGElement]

The font-face-format element describes the type of font referenced by its parent font-face-uri.

The font-face-format element describes the type of font referenced by its parent font-face-uri.

See also:
lazy val fontFaceName: SvgTag[SVGElement]

The font-face-name element points to a locally installed copy of this font, identified by its name.

The font-face-name element points to a locally installed copy of this font, identified by its name.

See also:
lazy val fontFaceSrc: SvgTag[SVGElement]

The font-face-src element corresponds to the src property in CSS @font-face descriptions. It serves as container for font-face-name, pointing to locally installed copies of this font, and font-face-uri, utilizing remotely defined fonts.

The font-face-src element corresponds to the src property in CSS @font-face descriptions. It serves as container for font-face-name, pointing to locally installed copies of this font, and font-face-uri, utilizing remotely defined fonts.

See also:
lazy val fontFaceUri: SvgTag[SVGElement]

The font-face-uri element points to a remote definition of the current font.

The font-face-uri element points to a remote definition of the current font.

See also:
lazy val foreignObject: SvgTag[SVGElement]

The foreignObject element allows for inclusion of a foreign XML namespace which has its graphical content drawn by a different user agent. The included foreign graphical content is subject to SVG transformations and compositing.

The foreignObject element allows for inclusion of a foreign XML namespace which has its graphical content drawn by a different user agent. The included foreign graphical content is subject to SVG transformations and compositing.

See also:
lazy val g: SvgTag[SVGGElement]

The g element is a container used to group objects. Transformations applied to the g element are performed on all of its child elements. Attributes applied are inherited by child elements. In addition, it can be used to define complex objects that can later be referenced with the use element.

The g element is a container used to group objects. Transformations applied to the g element are performed on all of its child elements. Attributes applied are inherited by child elements. In addition, it can be used to define complex objects that can later be referenced with the use element.

See also:
lazy val glyph: SvgTag[SVGElement]

A glyph defines a single glyph in an SVG font.

A glyph defines a single glyph in an SVG font.

See also:
lazy val glyphRef: SvgTag[SVGElement]

The glyphRef element provides a single possible glyph to the referencing altGlyph substitution.

The glyphRef element provides a single possible glyph to the referencing altGlyph substitution.

See also:
lazy val hkern: SvgTag[SVGElement]

The horizontal distance between two glyphs can be fine-tweaked with an hkern Element. This process is known as Kerning.

The horizontal distance between two glyphs can be fine-tweaked with an hkern Element. This process is known as Kerning.

See also:
lazy val image: SvgTag[SVGImageElement]

The SVG Image Element (image) allows a raster image into be included in an SVG document.

The SVG Image Element (image) allows a raster image into be included in an SVG document.

See also:
lazy val line: SvgTag[SVGLineElement]

The line element is an SVG basic shape, used to create a line connecting two points.

The line element is an SVG basic shape, used to create a line connecting two points.

See also:
lazy val linearGradient: SvgTag[SVGLinearGradientElement]

linearGradient lets authors define linear gradients to fill or stroke graphical elements.

linearGradient lets authors define linear gradients to fill or stroke graphical elements.

See also:
lazy val marker: SvgTag[SVGMarkerElement]

The marker element defines the graphics that is to be used for drawing arrowheads or polymarkers on a given path, line, polyline or polygon element.

The marker element defines the graphics that is to be used for drawing arrowheads or polymarkers on a given path, line, polyline or polygon element.

See also:
lazy val mask: SvgTag[SVGMaskElement]

In SVG, you can specify that any other graphics object or g element can be used as an alpha mask for compositing the current object into the background. A mask is defined with the mask element. A mask is used/referenced using the mask property.

In SVG, you can specify that any other graphics object or g element can be used as an alpha mask for compositing the current object into the background. A mask is defined with the mask element. A mask is used/referenced using the mask property.

See also:
lazy val metadata: SvgTag[SVGMetadataElement]

Metadata is structured data about data. Metadata which is included with SVG content should be specified within metadata elements. The contents of the metadata should be elements from other XML namespaces such as RDF, FOAF, etc.

Metadata is structured data about data. Metadata which is included with SVG content should be specified within metadata elements. The contents of the metadata should be elements from other XML namespaces such as RDF, FOAF, etc.

See also:
lazy val missingGlyph: SvgTag[SVGElement]

The missing-glyph's content is rendered, if for a given character the font doesn't define an appropriate glyph.

The missing-glyph's content is rendered, if for a given character the font doesn't define an appropriate glyph.

See also:
lazy val mpath: SvgTag[SVGElement]

the mpath sub-element for the animateMotion element provides the ability to reference an external path element as the definition of a motion path.

the mpath sub-element for the animateMotion element provides the ability to reference an external path element as the definition of a motion path.

See also:
lazy val path: SvgTag[SVGPathElement]

The path element is the generic element to define a shape. All the basic shapes can be created with a path element.

The path element is the generic element to define a shape. All the basic shapes can be created with a path element.

See also:
lazy val pattern: SvgTag[SVGPatternElement]

A pattern is used to fill or stroke an object using a pre-defined graphic object which can be replicated ("tiled") at fixed intervals in x and y to cover the areas to be painted. Patterns are defined using the pattern element and then referenced by properties fill and stroke on a given graphics element to indicate that the given element shall be filled or stroked with the referenced pattern.

A pattern is used to fill or stroke an object using a pre-defined graphic object which can be replicated ("tiled") at fixed intervals in x and y to cover the areas to be painted. Patterns are defined using the pattern element and then referenced by properties fill and stroke on a given graphics element to indicate that the given element shall be filled or stroked with the referenced pattern.

See also:
lazy val polygon: SvgTag[SVGPolygonElement]

The polygon element defines a closed shape consisting of a set of connected straight line segments.

The polygon element defines a closed shape consisting of a set of connected straight line segments.

See also:
lazy val polyline: SvgTag[SVGPolylineElement]

The polyline element is an SVG basic shape, used to create a series of straight lines connecting several points. Typically a polyline is used to create open shapes

The polyline element is an SVG basic shape, used to create a series of straight lines connecting several points. Typically a polyline is used to create open shapes

See also:
lazy val radialGradient: SvgTag[SVGRadialGradientElement]

radialGradient lets authors define radial gradients to fill or stroke graphical elements.

radialGradient lets authors define radial gradients to fill or stroke graphical elements.

See also:
lazy val rect: SvgTag[SVGRectElement]

The rect element is an SVG basic shape, used to create rectangles based on the position of a corner and their width and height. It may also be used to create rectangles with rounded corners.

The rect element is an SVG basic shape, used to create rectangles based on the position of a corner and their width and height. It may also be used to create rectangles with rounded corners.

See also:
lazy val set: SvgTag[SVGElement]

The set element provides a simple means of just setting the value of an attribute for a specified duration. It supports all attribute types, including those that cannot reasonably be interpolated, such as string and boolean values. The set element is non-additive. The additive and accumulate attributes are not allowed, and will be ignored if specified.

The set element provides a simple means of just setting the value of an attribute for a specified duration. It supports all attribute types, including those that cannot reasonably be interpolated, such as string and boolean values. The set element is non-additive. The additive and accumulate attributes are not allowed, and will be ignored if specified.

See also:
lazy val stop: SvgTag[SVGStopElement]

The ramp of colors to use on a gradient is defined by the stop elements that are child elements to either the lineargradient element or the radialGradient element.

The ramp of colors to use on a gradient is defined by the stop elements that are child elements to either the lineargradient element or the radialGradient element.

See also:
lazy val svg: SvgTag[SVGSVGElement]

When it is not the root element, the svg element can be used to nest a standalone SVG fragment inside the current document (which can be an HTML document). This standalone fragment has its own viewPort and its own coordinate system.

When it is not the root element, the svg element can be used to nest a standalone SVG fragment inside the current document (which can be an HTML document). This standalone fragment has its own viewPort and its own coordinate system.

See also:
lazy val switch: SvgTag[SVGSwitchElement]

The switch element evaluates the requiredFeatures, requiredExtensions and systemLanguage attributes on its direct child elements in order, and then processes and renders the first child for which these attributes evaluate to true. All others will be bypassed and therefore not rendered. If the child element is a container element such as a g, then the entire subtree is either processed/rendered or bypassed/not rendered.

The switch element evaluates the requiredFeatures, requiredExtensions and systemLanguage attributes on its direct child elements in order, and then processes and renders the first child for which these attributes evaluate to true. All others will be bypassed and therefore not rendered. If the child element is a container element such as a g, then the entire subtree is either processed/rendered or bypassed/not rendered.

See also:
lazy val symbol: SvgTag[SVGSymbolElement]

The symbol element is used to define graphical template objects which can be instantiated by a use element. The use of symbol elements for graphics that are used multiple times in the same document adds structure and semantics. Documents that are rich in structure may be rendered graphically, as speech, or as braille, and thus promote accessibility. note that a symbol element itself is not rendered. Only instances of a symbol element (i.e., a reference to a symbol by a use element) are rendered.

The symbol element is used to define graphical template objects which can be instantiated by a use element. The use of symbol elements for graphics that are used multiple times in the same document adds structure and semantics. Documents that are rich in structure may be rendered graphically, as speech, or as braille, and thus promote accessibility. note that a symbol element itself is not rendered. Only instances of a symbol element (i.e., a reference to a symbol by a use element) are rendered.

See also:
lazy val text: SvgTag[SVGTextElement]

The text element defines a graphics element consisting of text. Note that it is possible to apply a gradient, pattern, clipping path, mask or filter to text.

The text element defines a graphics element consisting of text. Note that it is possible to apply a gradient, pattern, clipping path, mask or filter to text.

See also:
lazy val textPath: SvgTag[SVGTextPathElement]

In addition to text drawn in a straight line, SVG also includes the ability to place text along the shape of a path element. To specify that a block of text is to be rendered along the shape of a path, include the given text within a textPath element which includes an xlink:href attribute with a reference to a path element.

In addition to text drawn in a straight line, SVG also includes the ability to place text along the shape of a path element. To specify that a block of text is to be rendered along the shape of a path, include the given text within a textPath element which includes an xlink:href attribute with a reference to a path element.

See also:
lazy val titleTag: SvgTag[SVGTextPathElement]

Each container element or graphics element in an SVG drawing can supply a title description string where the description is text-only. When the current SVG document fragment is rendered as SVG on visual media, title elements are not rendered as part of the graphics. Alternate presentations are possible, both visual and aural, which display the title element but do not display path elements or other graphics elements. The title element generally improve accessibility of SVG documents.

Each container element or graphics element in an SVG drawing can supply a title description string where the description is text-only. When the current SVG document fragment is rendered as SVG on visual media, title elements are not rendered as part of the graphics. Alternate presentations are possible, both visual and aural, which display the title element but do not display path elements or other graphics elements. The title element generally improve accessibility of SVG documents.

See also:
lazy val tref: SvgTag[SVGElement]

The textual content for a text can be either character data directly embedded within the text element or the character data content of a referenced element, where the referencing is specified with a tref element.

The textual content for a text can be either character data directly embedded within the text element or the character data content of a referenced element, where the referencing is specified with a tref element.

See also:
lazy val tspan: SvgTag[SVGTSpanElement]

Within a text element, text and font properties and the current text position can be adjusted with absolute or relative coordinate values by including a tspan element.

Within a text element, text and font properties and the current text position can be adjusted with absolute or relative coordinate values by including a tspan element.

See also:
lazy val use: SvgTag[SVGUseElement]

The use element takes nodes from within the SVG document, and duplicates them somewhere else. The effect is the same as if the nodes were deeply cloned into a non-exposed DOM, and then pasted where the use element is, much like anonymous content and XBL. Since the cloned nodes are not exposed, care must be taken when using CSS to style a use element and its hidden descendants. CSS attributes are not guaranteed to be inherited by the hidden, cloned DOM unless you explicitly request it using CSS inheritance.

The use element takes nodes from within the SVG document, and duplicates them somewhere else. The effect is the same as if the nodes were deeply cloned into a non-exposed DOM, and then pasted where the use element is, much like anonymous content and XBL. Since the cloned nodes are not exposed, care must be taken when using CSS to style a use element and its hidden descendants. CSS attributes are not guaranteed to be inherited by the hidden, cloned DOM unless you explicitly request it using CSS inheritance.

See also:
lazy val view: SvgTag[SVGViewElement]

A view is a defined way to view the image, like a zoom level or a detail view.

A view is a defined way to view the image, like a zoom level or a detail view.

See also:
lazy val vkern: SvgTag[SVGElement]

The vertical distance between two glyphs in top-to-bottom fonts can be fine-tweaked with an vkern Element. This process is known as Kerning.

The vertical distance between two glyphs in top-to-bottom fonts can be fine-tweaked with an vkern Element. This process is known as Kerning.

See also: