Abhishek has Published 83 Articles

How to set the maximum value of progress bar using HTML?

Abhishek

Abhishek

Updated on 20-Nov-2023 15:25:57

60 Views

The progress bar on any website is used to represent the percentage of any work that is completed like the download progress of any song or movie from any website. You can use the progress bar to show the amount of song or movie that is downloaded and remaining. ... Read More

How to set the inset shadow using CSS?

Abhishek

Abhishek

Updated on 20-Nov-2023 15:14:31

59 Views

Generally, we use the box-shadow property to apply shadow around any box or container. The box shadow property in CSS by default applies the shadow outside around the boundaries of the container. But we can also use the box shadow property to set the shadow inside the container as well. ... Read More

How to set the cursor style on browser using CSS?

Abhishek

Abhishek

Updated on 20-Nov-2023 15:10:18

31 Views

Generally, the cursor on any browser window is of arrow type by default. But you can change the cursor style or type to any style of your choice for any kind of text. There are many cursor style options that are available in CSS that you can choose to style ... Read More

How to set the content as a counter?

Abhishek

Abhishek

Updated on 20-Nov-2023 15:06:46

45 Views

In general, we use JavaScript to set the dynamic content as counter for the content on the web page. But in this article, we are going to learn how we can set the content as counter using the CSS counter properties. It is possible to set content as counter by ... Read More

How to set position of an image in CSS?

Abhishek

Abhishek

Updated on 20-Nov-2023 14:54:33

196 Views

In general, the default position of an image is left aligned on the web page. But you can change the position of an image according to your needs and set the position of an image manually on the web page where you have to show that particular image. Let us ... Read More

How to set padding inside an element using CSS?

Abhishek

Abhishek

Updated on 20-Nov-2023 14:46:07

62 Views

Padding in CSS is used to give some space around the content of the element. You can add the space around the any type of content that is contained by the element. The content can be direct text, or any other nested elements inside it. You can easily add the ... Read More

How to set padding around an element using CSS?

Abhishek

Abhishek

Updated on 20-Nov-2023 14:32:18

41 Views

The padding property in CSS is used to set the inner space between the content and the boundaries of the container. The space defined using the padding property will be set around the content of the container not around the container itself. It will set the space inside the container ... Read More

How to set one column control over height in Bootstrap?

Abhishek

Abhishek

Updated on 20-Nov-2023 13:07:39

20 Views

In this article, we will learn how we can set one column control over height in bootstrap? To solve this problem, first we make two different columns on the web page using Bootstrap classes, then we will use a div element inside one of those columns with position absolute to ... Read More

How to find the value of a button with JavaScript?

Abhishek

Abhishek

Updated on 21-Oct-2023 13:33:58

24K+ Views

In this tutorial, we will learn how we can find the value of a button with JavaScript. Sometimes, we need to use the button tag inside the form tag, where we assign a particularly unique value to each associated with the element using the value attribute. Which later helps ... Read More

How to subtract days from a date in JavaScript?

Abhishek

Abhishek

Updated on 04-Oct-2023 12:55:19

25K+ Views

In this tutorial, we will learn how to subtract days from a date in JavaScript. To subtract days from a JavaScript Date object, use the setDate() method. Under that, get the current days and subtract days. JavaScript date setDate() method sets the day of the month for a specified date ... Read More

Advertisements