<!DOCTYPE html>
<html>
<head>
<style>
.box[style*="color: red"] {
color: white !important;
}
.box {
background-color: blue;
padding: 15px 25px;
margin: 10px;
}
</style>
</head>
<body>
<div class="box" style="color: red;">
Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression.
</div>
</body>
</html>