Dishebh Bhayana has Published 48 Articles

How to create a printable webpage using CSS media queries?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:37:11

425 Views

We can create a printable webpage, and control the styling in the print preview of a page using the CSS media query print property, @media print. @media print is a CSS media query that allows us to add page styling to the print preview page of any webpage. Using this, ... Read More

How to Create a Pricing Table using HTML and CSS?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:36:28

573 Views

We can create a basic pricing table using just HTML and CSS. A pricing table can be a useful feature to implement in different websites where the purchase of commodities is involved, for example, an e-commerce web application, or travel websites. Let’s learn to create a such table with the ... Read More

How to create the previous and next buttons and non-working on the end positions using JavaScript?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:35:10

766 Views

We can create previous and next buttons that would be non-working (or disabled) at their end positions by using vanilla javascript. Javascript is a powerful browser-level language with which we can control and manipulate the DOM elements easily. Here, we will create 2 buttons, and change an HTML element’s content ... Read More

How to create pagination in Bootstrap 4?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:34:27

231 Views

To implement pagination in our web application, we use the different classes provided to us in Bootstrap 4, like “pagination”, “page-item”, “active”, “disabled”, and so on. Pagination means specifying a page number for a particular page in a series of pages. This could apply to a web application that has ... Read More

How to create numbering using counter-increment property in CSS?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:33:22

381 Views

The “counter-increment” property given in CSS is used to increase or decrease the counter values that we can display on a webpage using CSS. CSS counters are useful when we want to count the occurrences of an HTML element in a webpage. We will also use the “counter-reset” CSS property ... Read More

How to automatically close all collapsible elements inside of the accordion when closing the accordion?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:32:25

1K+ Views

We will use the bootstrap accordion component in our article to demonstrate how to collapse all the children's accordions inside the parent accordion. An accordion is a collapsible component that helps to display an expand/collapse type of content on the webpage. In this article, we will use the Bootstrap 5 ... Read More

How to Automatically Close Alerts using Twitter Bootstrap?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:30:51

1K+ Views

We can automatically close the Bootstrap Alert component by using the “close” method and “hide” class provided by Twitter bootstrap. Twitter Bootstrap Alert component is used to display an alert with a message to the user, often in response to a user action or an event. Approach 1: Using Close ... Read More

How to Automatic Refresh a web page in a fixed time?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:29:41

7K+ Views

We can auto-refresh a web page by either using a “meta” tag with the “http-equiv” property, or by using the setInterval() browser API. Automatic refreshing websites have certain use cases to them, for example, while creating a weather-finding web application, we may want to refresh our website after a set ... Read More

How to auto-suggest rich content while searching in Google AMP?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:28:31

61 Views

To implement auto-suggestion of rich content to the user during the typing of an input field, we will use the “amp-autocomplete” script from the Google AMP framework. Autocompleting an input field implies suggesting relevant content to the user as and when the user starts typing. Let’s discuss the approach with ... Read More

How to auto-adjust font size using CSS?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:26:50

632 Views

We can adjust the font size of the text using the “font-size-adjust” property given to us by the CSS. The “font-size-adjust” property allows us to adjust to a common font size regardless of the different font families used in the document if any. With this, we can adjust the font ... Read More

Advertisements