Articles on Trending Technologies

Technical articles with clear explanations and examples

Area of largest triangle that can be inscribed within a rectangle in C Program?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 222 Views

Suppose one rectangle is given. We know the length L and breadth B of it. We have to find the area of largest triangle that can be inscribed within that rectangle − Length (L) Breadth (B) The largest triangle that can be inscribed within ...

Read More

CSS background-clip property

karthikeya Boyini
karthikeya Boyini
Updated on 15-Mar-2026 211 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

C Program for area of hexagon with given diagonal length?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 515 Views

Here we will see how to get the area of one hexagon using diagonal length. The diagonal length of the hexagon is d. d ...

Read More

Bounce Out Left Animation Effect with CSS

George John
George John
Updated on 15-Mar-2026 98 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

C Program for area of decagon inscribed within the circle?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 276 Views

Here we will see how to get the area of a decagon inscribed within a circle. A decagon is a 10-sided polygon, and when inscribed in a circle, all vertices of the decagon lie on the circumference of the circle. Given the radius of the circle, we can calculate the area of the inscribed decagon. .circle { fill: none; stroke: #333; stroke-width: 2; } .decagon { fill: rgba(100, 150, 255, 0.3); stroke: #0066cc; stroke-width: 2; } ...

Read More

Bounce In Right Animation Effect with CSS

Samual Sam
Samual Sam
Updated on 15-Mar-2026 240 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

Area of circle inscribed within rhombus in C Program?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 254 Views

In C, we can calculate the area of a circle inscribed within a rhombus using the diagonals of the rhombus. When a circle is inscribed in a rhombus with diagonals 'a' and 'b', the circle touches all four sides of the rhombus. ...

Read More

CSS background-origin property

Chandu yadav
Chandu yadav
Updated on 15-Mar-2026 229 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

Area of a square inscribed in a circle which is inscribed in a hexagon in C Program?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 201 Views

Here we will see how to find the area of a square inscribed in a circle, which is itself inscribed in a hexagon. Let's say the side of the hexagon is 'A', the radius of the inscribed circle is 'r', and the side of the square is 'a'. A r a Mathematical Relationship For a regular hexagon with side A, the radius of the inscribed ...

Read More

Bounce In Left Animation Effect with CSS

Lakshmi Srinivas
Lakshmi Srinivas
Updated on 15-Mar-2026 192 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
Showing 21461–21470 of 61,297 articles
Advertisements