Skip to content

Tag Archives: CSS-Functions

The abs() function in CSS takes a single argument, which can be a numeric value or a mathematical expression and returns the absolute value of… Read More
The CSS cos() function is a mathematical function that calculates the cosine of a given angle. The cosine is a trigonometric function that represents the… Read More
The CSS sin() function is used to calculate the sine of an angle. The sine is a trigonometric function whose value ranges between -1 &… Read More
The CSS tan() function returns the tangent of a specified angle in radians. In other words, it returns the ratio of the length of the… Read More
The trigonometric atan() CSS function returns the inverse tangent of a value between -∞ and +∞. The single calculation in the function returns the number of… Read More
The trigonometric acos() function in the CSS gives the inverse cosine of a value between -1 and 1. The single computation in the function yields… Read More
The inverse tangent of two values between -infinity and infinity is returned by the trigonometric atan2() CSS function. The function returns the number of radians… Read More
The inverse sine of an integer between -1 and 1 is returned by the trigonometric asin() CSS function. The single computation in the function yields… Read More
What is CSS? CSS i.e. Cascading Style Sheets is a stylesheet language used to describe the presentation of a document written in a markup language… Read More
The CSS calc() function is an inbuilt function that is used to perform calculations based on CSS property. Working of calc() function: The calc() is… Read More
In this article, we will learn to color the text in the web page using HTML & CSS. Basically, we can either use <font> color… Read More
The repeating-conic-gradient() function is an inbuilt function in CSS that is used to repeat conic gradients in the background image. Syntax: background-image:repeating-conic-function(from angle, color degree1… Read More
The :where() pseudo-class is helpful for minimization of longer code in a longer CSS selector list. It avoids repetition, just replace multiple selectors with a… Read More
As we all know that we can apply the shadow using the Box-Shadow attribute of CSS, but it is not valid if we apply it… Read More
Like all other programming languages, CSS also have their functions. CSS functions are used as a value for various CSS properties. Unlike other programming languages,… Read More