CSS Inline block

CSS inline block allows to set a width and height on the element. Also, with display: inline-block, the top and bottom margins/paddings are respected, but with display: inline they are not. Compared to display: block, the major difference is that display: inline-block does not add a line-break after the element, so the element can sit next to other elements. The following example … Read more

CSS Visibility

CSS visibility property shows or hides an element without changing the layout of a document. CSS Visibility-values visible: It is the by default value. It specifies that the element is visible. hidden: It specifies that the element is invisible (but still takes up space). collapse: It is used only for table elements. It is used … Read more

Categories CSS

CSS Combinators

CSS combinators are explaining the relationship between two selectors. CSS selectors are the patterns used to select the elements for style purpose. A CSS selector can be a simple selector or a complex selector consisting of more than one selector connected using combinators.There are four types of combinators available in CSS which are discussed below: … Read more

Categories CSS

CSS Counters

CSS Counters let you adjust the appearance of content based on its location in a document. For example, you can use counters to automatically number the headings in a webpage. Counters are, in essence, variables maintained by CSS whose values may be incremented by CSS rules to track how many times they’re used. CSS Counters-properties CSS … Read more

Categories CSS

CSS Positioning

CSS positioning property sets how an element is positioned in a document. For example: CSS Positioning– values static: every element has a static position by default, so the element will stick to the normal page flow. So if there is a left/right/top/bottom/z-index set then there will be no effect on that element. relative: an element’s original position … Read more

Categories CSS

CSS Layers

CSS layers refer to applying the z-index property to elements that overlap with each other. The z-index property can be specified with an integer value (positive, zero, or negative), which represents the position of the element along the z-axis. CSS Layers (z-index) The z-index property, when used in conjunction with the position property, enables you to specify which element should appear on top … Read more

Categories CSS

CSS Text effects

CSS Text effects are used to add special effects to text. We will talk about the following: text-overflow word-wrap word-break writing-mode CSS Text effects-Overflow The CSS Text effects-overflow property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis (‘…‘), or display a custom string. CSS Text effect-word wrap CSS … Read more

CSS Media types

CSS media types can be used to apply part of a style sheet based on the result of one or more media queries. CSS Different Media Types The following table lists the various media types that may used to target different types of devices such as printers, handheld devices, computer screens etc. Media Type Description all Used … Read more

CSS Aural media

CSS aural media is used to specify a block of CSS that applied only when the content is being presented using a speech synthesis device. You can see the output below: CSS Aural media-uses It can be used by following: Used by blind or visually impaired people Help users learning to read and right pronunciation … Read more

Categories CSS

CSS Media Queries

CSS Media queries are used to modify site or app depending on a device’s general type. CSS Media Queries-Uses Media queries used to check following things: width and height of the viewport width and height of the device orientation (is the tablet/phone in landscape or portrait mode?) resolution Media Queries-syntax CSS media query is composed of … Read more