Shubham Vora has Published 836 Articles

Which property specifies the distance between nearest border edges of marker box and principal box?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:23:19

253 Views

In CSS, the ‘marker-offset’ CSS property is used to specify the distance between the nearest border edges of marker box and principal box. In CSS, the marker is a pseudoelement that refers to the bullet points of the lists. Here, we will learn to set the distance between the nearest ... Read More

Which property is used to underline, overline, and strikethrough text using CSS?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:22:28

440 Views

In CSS, the ‘text-decoration’ property is used to underline, overline, and strikethrough the text. Underlining the text means drawing a line below the text, and overlining the text means drawing a line above the text. Striking through the text means drawing a line on the text to show text is ... Read More

Which property is used as shorthand to specify a number of other font properties in CSS?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:20:35

253 Views

Developers can customize the font of the webpage using various CSS properties. For example, the ‘font-size’ property is used to specify the font size, and the ‘font-weight’ CSS property is used to specify the font weight of the text. Furthermore, there are lots of other CSS properties which we can ... Read More

What is the difference between overflow: auto and overflow: scroll in CSS?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:19:06

629 Views

In CSS, the ‘overflow’ property is used to specify the overflow of the content of the HTML element. For example, if the height of the div element is ‘500px’, and the height of the inside content is ‘1000px’, we need to make the content scrollable. In this tutorial, we ... Read More

Reduce the size of an icon during the animation

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:00:11

537 Views

It is important to add animations to icons or images to improve the UX of the application. In this tutorial, we will learn to add animation to the icons. Also, we will learn to reduce or increase the size of the icon during the animation. We will use the ... Read More

Why to put “_” in front of filename in SCSS?

Shubham Vora

Shubham Vora

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

769 Views

The SCSS allows developers to write CSS in a more structured way. Also, we can create multiple files for CSS while using the SCSS and import the required file in the main SCSS file. In this tutorial, we will see the objective to put ‘_’ before the filename in SCSS. ... Read More

Why does SASS cache folder is created?

Shubham Vora

Shubham Vora

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

550 Views

What is SASS? The full form of the SASS is Syntactically Awesome Style Sheets. It is a preprocessor or compiler which we can use to compile the SCSS. Now, the question is that what is the SCSS? The SCSS allows developers to write CSS code in a better way ... Read More

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

Shubham Vora

Shubham Vora

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

489 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

445 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

Resize image proportionally with CSS

Shubham Vora

Shubham Vora

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

630 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

Advertisements