Mohit Panchasara has Published 87 Articles

How to perform a real time search and filter on a HTML table?

Mohit Panchasara

Mohit Panchasara

Updated on 26-Jul-2023 11:35:12

923 Views

When developers develop a real-time web application, they need to deal with a large amount of data. For example, we have listed 1000 product data in the table format on the web page. If users want to find any particular product from the table, they need to scan the whole ... Read More

What are the classes to create responsive image & video in Materialize?

Mohit Panchasara

Mohit Panchasara

Updated on 14-Jul-2023 17:23:40

79 Views

The Materialize library allows developers to use pre-defined CSS classes and JavaScript methods to make a responsive web design. We can use the Materialize classes to customize the typography, add grids to the web page, and make responsive videos and images. It is always required to make images and videos ... Read More

What is the use of Mixins in LESS?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:52:33

112 Views

IN LESS, mixins provide a way to group a set of CSS properties and reuse them across different rule sets in our stylesheet. When we include a mixin in a rule set, all of the CSS properties defined in the mixin are added to the rule set where the mixin ... Read More

What is the use of Escaping in LESS?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:50:07

329 Views

In LESS, the "escaping" allows us to use any arbitrary string as a property or variable value. Sometimes, we may use special characters or symbols in our LESS code that can cause problems when the code is compiled. Escaping is a technique that helps prevent such issues by enclosing these ... Read More

What is CSS sprites and how to implement them on a page?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:49:07

98 Views

What are Sprites in CSS? In CSS, sprites are techniques used to which we can use to decrease the number of HTTP requests by the web browser. In this technique, we require to combine multiple images in a single image. After that, we can set the single image for every ... Read More

What is CSS Flexbox?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:45:16

184 Views

As a beginner developer, learning about CSS flexbox is important. It also helps to make the responsive web design easy by optimizing the spaces of the element. The CSS flexbox is a layout model that we can use to arrange the child items better. It also changes the flex items' ... Read More

What are the real world usage of CSS with SVG?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:36:51

43 Views

Developers use CSS to style the web page's content and represent it properly. It can be used to make any content attractive. The full form of the SVG is the scalable vector image. The SVG is one type of image like a jpg or png. The jpg or png are ... Read More

What are the Materialize Classes of Dropdowns?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:35:00

81 Views

Materialize is a front-end development framework that developers can use to style web pages, and it follows Google’s material design guidelines. It contains the different HTML components, which are pre-designed with CSS and pre-functional with JavaScript, and one of them is the dropdown. The dropdown is useful whenever developers want ... Read More

How to switch between multiple CSS stylesheets using JavaScript?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:11:52

1K+ Views

In this tutorial, we will learn to switch between multiple CSS stylesheets using JavaScript. Have you ever thought that when you toggle the theme of TutorialsPoint’s website, how it changes the CSS of the whole website? Here is a simple answer. When the user presses the button, it switches the ... Read More

Various tricks for :before pseudo elements using position property in CSS

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 16:56:28

368 Views

Generally, we add content to the web page using HTML and style the content using CSS. The CSS contains some pseudo-selectors, such as ‘:before’, and we can use it to add content to the web page before any HTML element. Sometimes, developers don’t want to put the content before the ... Read More

Advertisements