Để áp dụng hiệu ứng nâu đỏ cho hình ảnh bằng CSS3, hãy sử dụng giá trị nâu đỏ cho thuộc tính bộ lọc.
Ví dụ
Mã như sau -
<!DOCTYPE html>
<html>
<head>
<style>
img.demo {
filter: sepia(100%);
}
</style>
</head>
<body>
<h1>Learn Spring Framework</h1>
<img src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring Framework" width="160" height="150">
<h1>Learn Spring Framework</h1>
<img class="demo" src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring Framework" width="160" height="150">
</body>
</html> Đầu ra