Shubham Vora has Published 957 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

217 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

368 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

216 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

502 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

480 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

687 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

465 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

433 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

391 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

254 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

Advertisements