
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
Samual Sam has Published 2310 Articles

Samual Sam
77 Views
The set() function of Map object adds or updates elements (key-value pairs) to a Map object.SyntaxIts Syntax is as followsmapVar.set()Example Live Demo JavaScript Example var mapVar = new Map(); mapVar.set('1', 'Java'); mapVar.set('2', 'JavaFX'); ... Read More

Samual Sam
173 Views
To implement animation on the border-top-right-radius property with CSS, you can try to run the following codeExampleLive Demo table, th, td { border: 2px solid black; } ... Read More

Samual Sam
247 Views
The Date object is a data type built into the JavaScript language. Date objects are created with the new Date( ) as shown below.Once a Date object is created, a number of methods allow you to operate on it. Most methods simply allow you to get and set the year, ... Read More

Samual Sam
164 Views
To implement animation on the border-spacing property with CSS, you can try to run the following codeExampleLive Demo table, th, td { border: 1px solid green; } ... Read More

Samual Sam
2K+ Views
Use the align-items property with value flex-start to align flex items on the top.You can try to run the following code to implement the flex-start valueExampleLive Demo .mycontainer { display: flex; ... Read More

Samual Sam
168 Views
To indicate what character set the style sheet written with CSS, use the @character rule. The @charset rule must be written right at the beginning of the style sheet without even a space before it. The value is held in quotes and should be one of the standard character-sets.ExampleLet us ... Read More

Samual Sam
185 Views
To implement animation on the border-right property with CSS, you can try to run the following codeExampleLive Demo div { width: 500px; height: 300px; ... Read More

Samual Sam
75 Views
The Date object is a data type built into the JavaScript language. Date objects are created with the new Date( ) as shown below.Once a Date object is created, a number of methods allow you to operate on it. Most methods simply allow you to get and set the year, ... Read More

Samual Sam
167 Views
The outline-width property is used to set the width of the outline. Its value should be a length or one of the values thin, medium, or thick, just like the border-width attribute.Example This text is having ... Read More

Samual Sam
854 Views
To implement animation on the border-color property with CSS, you can try to run the following codeExampleLive Demo div { width: 500px; height: 300px; background: yellow; border: 10px solid gray; animation: myanim 3s infinite; background-position: bottom left; background-size: 50px; } @keyframes myanim { 20% { border-color: red; } } Performing Animation for color of border