Shubham Vora has Published 962 Articles

Why big tag is not in HTML5 while small tag exists?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 09:12:47

230 Views

In HTML 4, the and tags were included, but in HTML 5, only the tag exists as the tag is removed by developers. Why tag exists but not tag in the HTML 5 The tag was useful to make the font size ... Read More

Which methods are used to set styles on selected elements in jQuery?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 09:09:19

212 Views

Developers can use JavaScritp or JQuery to manipulate the style of the HTML elements. For that, first, developers need to access the HTML elements using JQuery and then use various methods to set the style for selected HTML elements. Sometimes, we require to manage elements styles using JQuery. For example, ... Read More

Which directive is used to detect the errors in SASS?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 07:53:50

172 Views

In SASS, the directive is a special symbol that starts with the ‘@’ character. There are various kinds of directives that are used in the SCSS code, instructing the compiler to process the code in a particular way. In this tutorial, we will learn about the @error and @debug directives ... Read More

Shimmer Effect using CSS

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 07:49:54

7K+ Views

The shimmer effect is an animation effect, and many websites add the shimmer effect in the loading indicator. It is an illusion of movement in the web page or HTML element. We can create a shimmer effect using various CSS properties such as linear gradients, keyframes, animation, background position, ... Read More

Resize image proportionally with CSS

Shubham Vora

Shubham Vora

Updated on 18-Apr-2023 15:30:17

374 Views

To make a responsive design of the application, we also require to make an image responsive. If images are not responsive, overflow occurs in the app, and it looks worst. So, we also require to increase or decrease the images' dimensions proportional to the parent element's dimensions. Here, we ... Read More

Which property specifies the right padding of an element in CSS?

Shubham Vora

Shubham Vora

Updated on 12-Apr-2023 09:01:50

141 Views

In CSS, the padding property allows us to add extra space between the HTML element’s border and its content. The right padding means only adding the space between the element’s content and the right border. Here, we will learn two different properties to specify the right padding of an element. ... Read More

Which property is used to set the background image of an element using CSS?

Shubham Vora

Shubham Vora

Updated on 12-Apr-2023 09:00:08

371 Views

In CSS, the ‘background-image’ property is used to set the background image of an element using CSS. The background-image property takes 4 different properties, as explained below. Url () − It takes an image path or remote url to fetch the image from a particular location and set it ... Read More

Which property is used to make a font oblique?

Shubham Vora

Shubham Vora

Updated on 11-Apr-2023 17:09:28

223 Views

In CSS, we can use the ‘font-style’ property to set the style of the font. We can use the different styles as a value of the font-style property, and ‘oblique’ is one of them. Basically, the ‘oblique’ font is a sloppy version of the text, and we set the angle ... Read More

Which one should we use ‘border: none’ or ‘border: 0 ‘?

Shubham Vora

Shubham Vora

Updated on 11-Apr-2023 17:06:54

473 Views

In CSS, the ‘border’ property is used to add a border to the HTML elements. We can add a border of widths, styles, and colours to the HTML element. Two border values come to mind when we need to remove the border from any element. The first value is ‘none’, ... Read More

What is maximum & minimum value for z-index property in CSS?

Shubham Vora

Shubham Vora

Updated on 11-Apr-2023 16:20:13

2K+ Views

In CSS, the z-index property is used to put one element on another. For example, we can create a stack of multiple HTML elements using CSS. If you have ever used the z-index property, you must have seen its value like 9, 99, 999, 0, -9, -99999, etc. Have you ... Read More

Advertisements