Found 10483 Articles for Web Development

What is Float Containment in CSS?

Shubham Vora
Updated on 27-Apr-2023 15:24:05

183 Views

First, let’s understand float containment before starting this tutorial. So, Float containment is a technique used in the CSS to control the layout of the web page elements. Whenever we set the ‘float’ property for any HTML element, it automatically gets removed from the original document flow of the web page, but it remains in the viewport. So, developers can face issues like the parent div element not expanding according to the dimensions of the child div element. Let’s understand it via the example below. Example In the example below, we have a ‘parent’ div element containing the text and ... Read More

What is a @extend directive in SASS?

Shubham Vora
Updated on 27-Apr-2023 15:19:50

168 Views

The SASS allows developers to write more readable code and manipulate it in a better way. It contains multiple directives such as @media, @content, @include, @mixin, @extend, etc., providing some functionality so developers can write better code than normal CSS. In this tutorial, we will learn about the @directive in SASS. The @extend directive allows developers to extend the CSS code. However, mixins also extend the CSS code and avoid repetition. The @extend directive also allows us to avoid the repetitions of the code. For example, if you have a common CSS for the application's fonts and need different font ... Read More

What does the CSS rule “clear: both” do?

Shubham Vora
Updated on 27-Apr-2023 15:16:29

484 Views

We use the ‘float’ property in CSS to keep elements floating on the left or right side. So, whenever we set the ‘float’ property for any HTML element, it is taken out from the document's normal flow, and sometimes it can create lots of problems. The ‘clear’ CSS property allows developers to set the position of the element which is next to the floating element. However, it always pushes the next element below the floating elements. The ‘clear’ property of CSS can have 4 different values: ' left’, ‘right’, ‘both’, and ‘inherit’. The ‘left’ value is used to push the ... Read More

What can be done with style sheets that can not be accomplished with regular HTML ?

Shubham Vora
Updated on 27-Apr-2023 15:13:44

136 Views

Developers can use CSS to describe the presentation of the web page content. The stylesheet contains the CSS code, which we link with the web page for a better representation of the web page. Why do we Require to use a Stylesheet with an HTML Web Page? For beginners, the first question comes to mind is that why do we require to use the stylesheet? Can’t we create web pages without using the stylesheet? The answer is yes. You can create a web page without using the stylesheet. HTML is only used to add content to the web page, and ... Read More

Using data in JSON format in Snack

Saba Hilal
Updated on 02-May-2023 14:43:09

702 Views

There are lots of ways to use data with apps made with Snack Expo. Sometimes the data is stored as JSON, that mean JavaScript Object Notation. In this format, the data can be stored easily as Key-Value pairs and can also be converted to a CSV file. In this article, using javascript on Snack, the methods to use JSON data are specified. In example 1, the method to read this data and to display it as a table is given. In the second example, the methods of saving the JSON data as a CSV file and to download it, is ... Read More

What is the use of css() method in jQuery?

Shubham Vora
Updated on 25-Apr-2023 16:18:04

331 Views

Jquery contains various methods, and CSS() is one of them. The CSS() method is used to get the value of the particular css property applied to the particular HTML element. Furthermore, it is also used to set the CSS property with its value for the particular HTML element. Developers can also update the CSS property value using the CSS() method. In this tutorial, we will learn to use Jquery's css() method to access and set the CSS property for the particular HTML element. Syntax Users can follow the syntax below to use Jquery's css() method. Var value = $('element').css(property); $('element').css(property, ... Read More

What is the use of CSS ruleset?

Shubham Vora
Updated on 25-Apr-2023 16:15:15

621 Views

CSS stands for the cascading style sheet. It is used to style the HTML element. HTML is used to create web pages or add content to web pages. After that, the developer uses CSS to render the HTML content in a particular style to make it look awesome. The CSS ruleset contains mainly two parts. One is a CSS selector, and another is a declaration block. The CSS selector is used to select HTML elements, and the declaration block contains the CSS properties in the key-value format to apply to the HTML element. Syntax Users can follow the syntax ... Read More

What is the Outline Effect to Text?

Shubham Vora
Updated on 24-Apr-2023 17:30:02

392 Views

Sometimes, we require to show only the text's outline and remove the text's fill. We can also say it is the outline effect. We can use various CSS properties to generate an outline effect for the text. For example, we can add a border to the text and remove the fill colour of the text to add an outline effect to the text. Here, we have three different approaches to showing text with outline effects using HTML and CSS. Using the Various CSS Properties In this approach, we will use the three CSS properties to add an outline effect to ... Read More

What is the difference between position:sticky and position:fixed in CSS?

Shubham Vora
Updated on 24-Apr-2023 17:22:58

13K+ Views

In CSS, the ‘position’ property is used to set the position in the viewport for the HTML element. It can have values such as ‘fixed’, ‘sticky’, ‘static’, ‘absolute’, ‘relative’, etc. In this tutorial, we will learn the difference between the ‘position: fixed’ and ‘position: sticky’. What is Position: Fixed in CSS? The ‘fixed’ value for the position property is used to set any element at the fixed position in the HTML viewport. Whenever we set the fixed position for any HTML element, it comes out from the document flow. It sets the position based on the viewport, even if we ... Read More

What is the difference between “screen” and “only screen” in media queries?

Shubham Vora
Updated on 24-Apr-2023 18:28:03

3K+ Views

In CSS, media queries play an important role in creating a responsive web design, and nowadays responsive design is one of the important things every website requires to attract visitors. In general, we can write media queries using the @media CSS rule. However, we can use the different conditions and keywords in a media query to target different devices. For example, mobile devices, desktop devices, printer screens, etc. In this tutorial, we will learn the difference between the ‘screen’ and ‘only screen’ in media queries. What is a Screen in Media Queries? In CSS, we use the ‘screen’ keyword inside ... Read More

Advertisements