ephox-end-icon Attribute

Description

This CSS attribute can be used to specify the icon used for a closing custom tag (e.g. </CustomTag>). This attribute should not be used with an empty tag. The icon for empty tags can be specified through the ephox-icon attribute.

Permitted Values

[url]

A URL which maps to an image which is to be used as the icon for this custom tag. This URL can be either relative or absolute. If relative URLs are specified they are resolved in relation to either the BaseURL (if specified) or the page in which EditLive! for XML is embedded (if the BaseURL is not specified).

Example

The following example specifies the image icons/starticon.gif for the start tag icon and icons/endicon.gif for the end tag icon of the custom tag MyTag.

MyTag{
  display: block;
  ephox-start-icon: url(icons/starticon.gif);
  ephox-end-icon: url(icons/endicon.gif)
}