Shubham Vora has Published 962 Articles

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

Shubham Vora

Shubham Vora

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

204 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

126 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

350 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

Shake a Button on Hover using HTML and CSS

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:17:29

3K+ Views

In this tutorial, we will learn to shake a button when the user hovers using HTML and CSS. Creating a shaking button makes the UX of the application more attractive. We need to create a custom animation using the CSS ‘keyframes’ rules to shake any HTML element. After that, ... Read More

Remove border from IFrame using CSS

Shubham Vora

Shubham Vora

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

6K+ Views

We can use the ‘iFrame’ in HTML to embed the document in the HTML web page. For example, we can embed youtube videos in the web page using the ‘IFrame’ HTML tag. The ‘iFrame’ contains the border by default. In this tutorial, we will learn various approaches to removing ... Read More

Programming a slideshow with HTML and CSS

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:02:34

3K+ Views

Generally, the developer uses JavaScript to add the behaviour to the HTML code. Sometimes, we can also add behaviour to the HTML code using CSS. For example, we can create a slideshow using HTML and CSS rather than using JavaScript with HTML. We can create custom keyframes to animate ... Read More

Reduce the size of an icon during the animation

Shubham Vora

Shubham Vora

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

311 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

Wildcard Selectors (*, ^ and $) in CSS for classes

Shubham Vora

Shubham Vora

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

9K+ Views

In CSS, selectors are used to selecting the elements by class name, id, tag, etc. There are also some wildcard selectors available in CSS, which we can use to define the queries to select the HTML elements. Wildcard selectors allow us to select an HTML element containing the particular substring ... Read More

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

Shubham Vora

Shubham Vora

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

472 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

264 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

Advertisements