
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Daniol Thomas has Published 197 Articles

Daniol Thomas
274 Views
Use the transition-duration property in CSS to set how many seconds or milliseconds a CSS transition effect takes to complete −ExampleLive Demo div { width: 150px; height: 150px; background: blue; transition-property: height; transition-duration: 2s; } div:hover { height: 200px; } Heading One Hover over the below box to change its height.

Daniol Thomas
277 Views
To implement animation on padding-top property with CSS, you can try to run the following code −ExampleLive Demo div { width: 350px; height: 150px; outline: 3px solid maroon; animation: myanim 3s infinite; } @keyframes myanim { 30% { padding-top: 60px; } } CSS padding-top property

Daniol Thomas
124 Views
The voice-range property in CSS is used to set the range of the speaking voice. This is the pitch range.The following is the syntax:voice-range: [[x-low | low | medium | high | x-high]]Above, set the range of pitch i.e. low, medium, high, etc.The following is an example of the voice-range ... Read More

Daniol Thomas
835 Views
To convert HTML5 canvas to PNG, follow the below-given steps −You need to add the generated data URL to the href attribute of an tag.Dialog for base64 image −Add a filename −Now define http headers −headers=Content-Disposition: attachment; filename=newimg.pngTo deal with the RAM of the web browser and make its utilization ... Read More

Daniol Thomas
154 Views
Use the columns property to set columns with CSS. You can try to run the following code to implement the columns property:ExampleLive Demo .demo { column-rule-color: gray; columns: 100px ... Read More

Daniol Thomas
799 Views
You can try to run the following code to center pagination on a web page:ExampleLive Demo .demo { display: inline-block; } .demo1 { ... Read More

Daniol Thomas
115 Views
You can try to run the following code to align the grid inside the container using the justify-content property:ExampleLive Demo .container { display: grid; background-color: gray; ... Read More

Daniol Thomas
9K+ Views
Use the color attribute in HTML to display the color of the text.Note − This attribute is not supported in HTML5.ExampleYou can try to run the following code to learn how to implement color attribute in HTML − HTML Background Colors This is demo text.

Daniol Thomas
237 Views
Use the [attribute ~= "value"] selector to select elements with an attribute value containing a specified word with CSS.You can try to run the following code to implement the [attribute ~= "value"] selector. Here, the word we are searching is “Tutorials”, ExampleLive Demo ... Read More