The sepia() function is an inbuilt function which is used to apply a filter to the image to convert an image into a sepia image.
Syntax:
sepia( amount )
Parameters: This function accepts single parameter amount which holds the value of sepia. The value of sepia is set in terms of value and percentage. The value 0% represents original image and 100% represents the complete sepia image. Below example illustrates the sepia() function in CSS:
Example:
html
<!DOCTYPE html>
< html >
< head >
< title >CSS sepia() Function</ title >
< style >
h1 {
color:green;
}
body {
text-align:center;
}
.sepia_effect {
filter: sepia(100%);
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >CSS sepia() function</ h2 >
< img class = "sepia_effect" src =
alt = "GeeksforGeeks logo" >
</ body >
</ html >
|
Output:
Supported Browsers: The browsers supported by sepia() function are listed below:
- Google Chrome 18 and above
- Edge 12 and above
- Internet Explorer not supported
- Firefox 35 and above
- Safari 6 and above
- Opera 15 and above
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
07 Jun, 2023
Like Article
Save Article