customtag

Form

<User specified tag> ... </User specified tag>

Attributes

attribute default description
id none specifies the unique ID
class none specifies the style sheet class
style none specifies the style sheet

Support

Microsoft (MSDN)
[IE5 or later]

Explanation

The customtag tag specifies unique tags defined by users and is a Internet Explorer specific extension. You need to specify the tag name used like xmlns:user definition tag in <html> tag

Related Tags

xml

Sample Code [Output]

<html xmlns:customtag>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
<style type="text/css"><!--
customtag\:red { color:red; }
--></style>
</head>
<body>
<customtag:red>This text is red.</customtag:red>
</body>
</html>