Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 22, 2021 04:55 pm GMT

HTML Global Attributes

HTML Global AttributesIn this tutorial, you will learn Global Attributes which are common for all HTML elements. The global attributes assist by both standard and non-standard elements.
The global attributes can be use with all elements, even it may not have any effect on many elements.

HTML defines many attributes that are common to all elements. These attributes may be specified on all elements, with some exceptions where it is not suitable. Like

section of the document E.g , <script>, <base> etc.

HTML Global Attributes are:

AttributesValueDescription
Contenteditabletrue/falseIt confirm whether the content within an element is editable.
classclassnameIt is used to give the class name for the element. It is mostly use with the CSS stylesheet.
accesskeycharacterIt is used to create keyboard shortcuts for the element.
data-*somevalueIt is used to save element-specific private data that can be retrieve by Javascript.
contextmenumenu_idIt describe the id for the element that is used as a context menu for an element.
draggabletrue/false/autoIt defines either the content within an element is portable or not using Drag and Drop API.
dropzonecopy/move/linkIt defines the action is taken on the dragged element when it is dropped, such as whether it is copied, moved or linked.
ididIt defines a unique id for the element. It can be use with CSS and JavaScript.
stylestyleIt is used to apply inline CSS to the element.
spellchecktrue falseIt defines either the content should be checked for spelling errors or not.
titletextIt is used to give the title, or some extra information about the element.
translateyes/noIt defines whether the content of the element should be translated when the web page is localized or not.

I shared this post from HTML Global Attributes you can read in detail from there.

If you have any question please discuss below help to improve. Thank you.


Original Link: https://dev.to/elinabey/html-global-attributes-1b1d

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To