answersLogoWhite

0


Best Answer

Deprecation is a programming term that means that the feature you are using is no longer being supported by the language, but it being left in place to avoid breaking older code. While a deprecated tag will continue to work (at least in the current version) new code should not employ the tag.

Often, deprecation is followed by the complete removal of a function, object, or element from the language. In that case "legacy" code still using the element will need to be rewritten because it will suddenly be "broken."

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does it mean for an HTML tag or attribute to be deprecated?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is width a tag in HTML?

This is not a tag. It is an attribute and part of CSS


What attribute is used to specify the thickness of a hr tag?

Use the size attribute to specify the height (or thickness) of the rule.For example:Note: Since HTML 4.01, the align, noshade, size and width attributes are deprecated. Use style properties instead.


How do you make a background on a webpage using HTML?

Making a background on a webpage in HTML is deprecated; you are advised to use CSS instead. However, if you must use HTML and only HTML, then place the "background" attribute in the body tag of the document in question like so: <body background="http://www.example.com/picture.jpg">


How can you open a link in a new browser window in html?

You can do this using the "target" attribute of the anchor tag. It looks like this:Your linked textThe target attribute is valid in HTML 4 and 5, but was deprecated in XHTML 1.0, so it's not valid in the "Strict" doctype (use transitional instead.)


The color of a hyperlink that has not been clicked can be specified by setting what attribute in the BODY HTML tag?

The color of a hyperlink that has not been clicked can be specified by setting the "BGCOLOR" attribute in the HTML tag.


On HTML When a tag is no longer used or is becoming obsolete it is a?

"Deprecated" tag. Deprecation is a process that allows the continued use of a tag, especially in legacy documents, while also signaling to developers that the tag may eventually be superseded. A superseded tag is a tag that has been removed entirely from the standard. The tag no long has to function for a browser to be standards compliant, and using the tag will absolutely cause a fault in validation. Sometimes a deprecated tag is rescued in the next version. This happens when the standards body (the W3C for HTML) decides that removing the tag wasn't the best decision, or finds a use for the tag it hadn't previously considered. In the case of HTML, XHTML 1.0 deprecated the italic <i> and bold face <b> tags, but HTML 5 restored them to standards compliance.


Which tag is used to hide the field on a HTML form?

The input tag with the type attribute as hidden.


What is differences between tags and attribute?

A tag is a declaration of a HTML object whereas an Attribute is a property of an object.


What is the difference between 'text font' and 'font style'?

The font type is what it looks. There are quite a lot of them. Font size is the size of them.


How do you use border in HTML?

Border can be an attribute in html. For example, in the table tag. This will put a border around the table.As another example, it can be used in the img tag.


What are the attributes that could be use within divtag in HTML?

The standard attributes of the DIV tag are:id, class, title, style, dir, lang, xml:lang.More information can be found in the "Related Links" section below.Note: The "align" attribute of the div element was deprecated in HTML 4.01, and is not supported in XHTML 1.0 Strict DTD.


Which HTML tag would be apply the bgcolour attribute to change the background color of single table row?

The tr tag.