
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
Found 10484 Articles for Web Development

183 Views
Many developers find it difficult to use the calc() function in Tailwind CSS, which limits their ability to create responsive and dynamic layouts. This article explains how to implement calc() effectively, improving design flexibility and precision. What is calc() in CSS? The CSS Calc() function allows you to perform calculations to determine CSS property values and perform arithmetic operations (addition, subtraction, multiplication, and division) directly within your CSS. Approaches For Calc() With Tailwind CSS Tailwind doesn't have built-in utilities for calc(), but you can still use it in different ways. Using Inline Styles ... Read More

30 Views
Centering content vertically in a full-screen div can be challenging if you are unfamiliar with Tailwind's utilities. Tailwind CSS has many utility classes, but to use them effectively, you must understand how they work and the best ways to apply them. Approaches for Vertically Aligning Content in a Div Tailwind CSS provides a wide range of utility classes that support effective alignment of the content within an element. We can vertically align div content in Tailwind CSS using the following approaches. Using Flexbox Using Grid Using ... Read More

418 Views
Unique IDs are used to differentiate multiple elements from each other, maintain the internal state of components, or create a key for user data. In this article, we will explain all the approaches to creating unique IDs for a set of elements in React JS. Approaches to Create Unique ID in React JS Here is the list of approaches for creating unique IDs in React JS, which we will be discussing in this article with stepwise explanations and complete example codes. Using uuid Library Using Timestamps ... Read More

318 Views
CSS overflow: hidden; property is used to hide the lengthy content based on the size of your element. Here in this article, we will see how you can use overflow: hidden; on element so we can keep the lengthy content hidden. If you did not set the size of your element then it will stretch and show you the whole content. Approaches to Make the CSS overflow: hidden Work Using table-layout: fixed Property Using text-overflow and white-space Properties Using table-layout: fixed Property By default, tables adjust ... Read More

196 Views
Prop Drilling is a common mistake beginners make while building React apps. It can cause reduced code readability and even performance issues for the app. In this article, I will explain what are props, prop drilling, and how to avoid prop drilling using context APIs. Table of Content What are Props? Prop Drilling Why to Avoid Prop Drilling? Fix Prop Drilling With Context API Prerequisites Good knowledge of React, useState Hook, and useContext Hook. ... Read More

333 Views
JSON files are used in APIs to transfer data from server to client in the form array. This transferred data needs to be displayed in the user interface, such as in tables or any other components. In this article, we will demonstrate how to display JSON data using a React Table. Prerequisites To display a JSON file in React.js, we need to have a basic understanding of the React.js library. Basic knowledge of React, useState Hook, and useEffect Hook. Ensure Node.js and React are installed on your system. ... Read More

286 Views
Editable tables are useful for storing and modifying data directly within the user interface. In this article, we will show a step-by-step procedure to create a dynamic table in ReactJS with features like adding, updating, deleting, and search filter on entries. Prerequisites To create an editable table using React.js, we need to have a basic understanding of front-end development and the React.js library. Basic knowledge of React, useState Hook, and functional components. Ensure Node.js and React are installed on your system. Understanding of basic HTML table ... Read More

457 Views
A drop shadow enhances appearance of an SVG by giving it a 3D effect or a sense of depth, SVG drop shadows can be created using SVG filters and box-shadow or filter property. SVG Filters: Provides fine-grained control over shadow properties. CSS box-shadow or filter: Applies shadows using simpler syntax. Approaches to Create an SVG Drop Shadow Using the Element in SVG Using CSS filter Using the Element in SVG This is a powerful approach ... Read More

482 Views
To create a blinking effect with CSS3 animations there are a lot of approaches. Blinking effects are commonly used to draw attention to specific elements on a webpage, such as warning messages, buttons, or text, CSS3 animations make it easy to implement such effects with clean and reusable code. Approaches to Create Blinking Effect Using @keyframes and animation Properties Using animation and visibility Using animation and opacity Using CSS Transitions (Limited Control) Using @keyframes and animation Properties This method will ... Read More

244 Views
When dealing with long text in a table, ensuring that it doesn't overflow and ruin your layout is crucial, CSS provides solutions to add ellipses (...) to text that exceeds a cell's width, keeping your UI clean and readable, this article explores two approaches: using the display property and the table-layout property. Approaches to Make CSS Ellipsis Work on a Table Cell Using the display Property Using the table-layout Property Using the display Property The display property allows us to treat the table cell as a block or ... Read More