CSS Articles

Page 119 of 130

CSS speak property

Samual Sam
Samual Sam
Updated on 15-Mar-2026 110 Views

The CSS speak property controls how text content is rendered by screen readers and other assistive technologies. It determines whether text should be spoken aloud and how it should be pronounced when read by speech synthesis software. Syntax selector { speak: value; } Possible Values ValueDescription noneSuppresses aural rendering so that the element requires no time to render normalUses language-dependent pronunciation rules for rendering an element and its children spell-outSpells the text one letter at a time Example: Different Speak Values The following example demonstrates different ...

Read More

Fade Out Right Big Animation Effect with CSS

Yaswanth Varma
Yaswanth Varma
Updated on 15-Mar-2026 175 Views

Animations never fail to attract people. When you present them with a painting and a video, they will always focus on the moving image since it is more visually appealing. The fade out right big animation creates a dramatic exit effect where elements fade away while sliding to the right with increased scale, adding visual impact to your web interfaces. Syntax @keyframes fadeOutRightBig { from { opacity: 1; transform: translateX(0); } ...

Read More

Fade Down Big Animation Effect with CSS

karthikeya Boyini
karthikeya Boyini
Updated on 15-Mar-2026 137 Views

The CSS Fade Down Big animation effect creates a dramatic exit animation where an element fades out while moving downward by a large distance. This animation is commonly used for dramatic page transitions or removing elements from view. Syntax @keyframes fadeOutDownBig { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; ...

Read More

Bounce Out Right Animation Effect with CSS

Arjun Thakur
Arjun Thakur
Updated on 15-Mar-2026 77 Views

The CSS Bounce Out Right animation effect creates a bouncing motion where an element slides to the right while fading out. The animation starts with a slight leftward movement before bouncing out to the right side of the screen. Syntax @keyframes bounceOutRight { 0% { transform: translateX(0); } 20% { opacity: 1; transform: translateX(-20px); } 100% { opacity: 0; transform: translateX(2000px); } } .element { animation: bounceOutRight duration timing-function; } Example The following example demonstrates the bounce ...

Read More

CSS background-clip property

karthikeya Boyini
karthikeya Boyini
Updated on 15-Mar-2026 190 Views

The CSS background-clip property is used to define the painting area of the background. It controls how far the background extends within an element. Syntax selector { background-clip: value; } Possible Values ValueDescription border-boxBackground extends to the outer edge of the border (default) padding-boxBackground extends to the outer edge of the padding content-boxBackground extends only to the edge of the content area Example 1: Using padding-box The following example demonstrates background-clip: padding-box where the background does not extend under the border − ...

Read More

Bounce Out Left Animation Effect with CSS

George John
George John
Updated on 15-Mar-2026 77 Views

The CSS bounce out left animation effect makes an element bounce slightly to the right before sliding out to the left and fading away. This animation creates a dynamic exit effect that's commonly used for removing items or transitioning elements off-screen. Syntax selector { animation-name: bounceOutLeft; animation-duration: duration; animation-fill-mode: both; } @keyframes bounceOutLeft { 0% { transform: translateX(0); } 20% { opacity: 1; transform: translateX(20px); } 100% { opacity: 0; transform: translateX(-2000px); ...

Read More

Bounce In Right Animation Effect with CSS

Samual Sam
Samual Sam
Updated on 15-Mar-2026 219 Views

The CSS Bounce In Right animation effect creates an element that slides in from the right side of the screen with a bouncing motion. This animation starts with the element positioned far to the right and invisible, then bounces it into its final position. Syntax .element { animation-name: bounceInRight; animation-duration: duration; animation-fill-mode: both; } @keyframes bounceInRight { 0% { opacity: 0; transform: translateX(2000px); ...

Read More

CSS background-origin property

Chandu yadav
Chandu yadav
Updated on 15-Mar-2026 209 Views

The CSS background-origin property specifies the positioning area of background images. It determines whether the background image starts from the border box, padding box, or content box of an element. Syntax selector { background-origin: value; } Possible Values ValueDescription padding-boxBackground starts from the padding edge (default) border-boxBackground starts from the border edge content-boxBackground starts from the content edge Example: Content Box Origin The following example demonstrates the background-origin: content-box property − .demo { ...

Read More

Bounce In Left Animation Effect with CSS

Lakshmi Srinivas
Lakshmi Srinivas
Updated on 15-Mar-2026 168 Views

The CSS Bounce In Left animation effect creates an element that enters from the left side of the screen with a bouncing motion. This animation starts with the element positioned off-screen to the left, then slides in with a characteristic bounce effect. Syntax @keyframes bounceInLeft { 0% { opacity: 0; transform: translateX(-2000px); } 60% { opacity: 1; ...

Read More

Usage of CSS @charset rule

Ankith Reddy
Ankith Reddy
Updated on 15-Mar-2026 151 Views

The CSS @charset rule specifies the character encoding used in an external CSS file. It must be placed at the very beginning of the CSS file to ensure proper interpretation of special characters and symbols. Syntax @charset "encoding"; Rules for Usage Must be the first thing in the CSS file (no spaces or comments before it) The encoding name must be enclosed in double quotes Only one @charset rule is allowed per CSS file Most commonly used with UTF-8 encoding Example: UTF-8 Character Set The following example shows how to ...

Read More
Showing 1181–1190 of 1,299 articles
« Prev 1 117 118 119 120 121 130 Next »
Advertisements