AmitDiwan has Published 10744 Articles

HTML DOM Textarea placeholder Property

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 05:11:34

183 Views

The HTML DOM Textarea placeholder property returns and modify the value of placeholder attribute of a text area element in an HTML document.SyntaxFollowing is the syntax −1. Returning placeholderobject.placeholder2. Adding placeholderobject.placeholder = “text”Let us see an example of HTML DOM Textarea placeholder Property:ExampleLive Demo    body {   ... Read More

HTML Screen availHeight Property

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:59:22

220 Views

The HTML Screen availHeight property returns the available height of the user’s screen that means it excludes interface features of the browser.SyntaxFollowing is the syntax −screen.availHeightExampleLet us see an example of HTML Screen availHeight Property:Live Demo    body {       color: #000;       height: ... Read More

HTML Screen availWidth Property

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:57:09

121 Views

The HTML Screen availWidth property returns the available width of the user’s screen that means it excludes interface features of the browser.SyntaxFollowing is the syntax −screen.availWidthExampleLet us see an example of HTML Screen availWidth Property −Live Demo    body {       color: #000;       ... Read More

HTML Screen height Property

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:55:11

189 Views

The HTML Screen height property returns the total height of the user’s screen.SyntaxFollowing is the syntax −screen.heightExampleLet us see an example of HTML Screen height Property -Live Demo    body {       color: #000;       height: 100vh;       background-color: #FBAB7E;     ... Read More

HTML Screen colorDepth Property

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:53:12

149 Views

The HTML Screen colorDepth property returns the bit depth of the color palette for displaying images(in bits per pixel).SyntaxFollowing is the syntax −screen.colorDepthExampleLet us see an example of HTML Screen colorDepth Property −Live Demo    body {       color: #000;       height: 100vh;   ... Read More

HTML Screen pixelDepth Property

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:51:42

118 Views

The HTML Screen pixelDepth property returns the color resolution of the visitor’s screen.SyntaxFollowing is the syntax −screen.pixelDepthExampleLet us see an example of HTML Screen pixelDepth Property −Live Demo    body {       color: #000;       height: 100vh;       background-color: #FBAB7E;     ... Read More

HTML view Event Property

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:47:54

106 Views

The HTML view Event property returns a cite to the Window object where the event occured.SyntaxFollowing is the syntax −event.viewExampleLet us see an example of HTML view Event Property −Live Demo    body {       color: #000;       height: 100vh;       background-color: ... Read More

HTML Viewport meta tag for Responsive Web Design

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:45:27

4K+ Views

The HTML Viewport meta tag is used for creating responsive website. So that web page can adjust its width according to viewport.SyntaxFollowing is the syntax −< meta name=”viewport” content=”width=device-width, initial-scale=1.0” >Attributes of viewport meta tagAttributeExplanationwidthIt specifies the virtual viewport width of the device.heightIt specifies the virtual viewport height of the ... Read More

HTML onblur Event Attribute

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:43:21

295 Views

The HTML onblur attribute is used when an HTML element loses focus in an HTML document.SyntaxFollowing is the syntax −ExampleLet us see an example of HTML onblur event Attribute −Live Demo    body {       color: #000;       height: 100vh;     ... Read More

HTML onclick Event Attribute

AmitDiwan

AmitDiwan

Updated on 16-Feb-2021 04:41:20

539 Views

The HTML onclick attribute is triggered when you mouse click on an HTML element in an HTML document.SyntaxFollowing is the syntax −ExampleLet us see an example of HTML onclick event Attribute −Live Demo    body {       color: #000;       height: 100vh; ... Read More

Advertisements