<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Important and style attribute</title>
<style>
.red {
background-color: red !important;
}
</style>
</head>
<body>
<div style="background-color: blue !important" class="red">I'm important!</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Important and style attribute</title>
<style>
.red {
background-color: red !important;
}
</style>
</head>
<body>
<div style="background-color: blue !important" class="red">I'm important!</div>
</body>
</html>