A CSS selector is the part of a CSS ruleset that actually selects the content you want to style. Different types of selectors are listed below. Universal Selector The universal selector works like a wildcard character, selecting all elements on a... Read More
CSS
content-box is the default value box-sizing property. The height and the width properties consist only of the content by excluding the border and padding. Consider an example as shown: div{ width:300px; height:200px; padding:15px; ... Read More
Flexbox stands for flexible box and it was introduced around 2017 in CSS with the purpose of providing an efficient way to handle layouts, align elements within them and distribute spaces amongst the items in dynamic/responsive conditions. It... Read More
This article covers the most frequently asked CSS interview questions in 2022 for freshers and experienced candidates. What is CSS? CSS stands for Cascading Style Sheet. It is a stylesheet language that defines how the elements (or contents) in a... Read More
We can use the font-family property for achieving this. The font-family property is used for specifying what font needs to be applied on the targetted DOM element. It can hold several font names as part of the “fallback” mechanism in case the... Read More
There are different ways to specify units in CSS like px, em, pt, and percentage (%). px(Pixel) gives fine-grained control and maintains alignment because 1 px or multiple of 1 px is guaranteed to look sharp. px is not cascade. em maintains relative... Read More
No, it doesn’t affect the inline elements. Inline elements flow with the contents of the page. Read More
Block Element: The block elements always start on a new line. They will also take space for an entire row or width. List of block elements are <div>, <p>. Inline Elements: Inline elements don't start on a new line, they appear on the... Read More
There are different ways to include a CSS in a webpage, 1. External Style Sheet: An external file linked to your HTML document: Using a link tag, we can link the style sheet to the HTML page. <link rel="stylesheet" type="text/css" href=... Read More
It is a CSS unit used to measure the height and width in percentage with respect to the viewport. It is used mainly in responsive design techniques. The measure VH is equal to 1/100 of the height of the viewport. If the height of the browser is... Read More