styles contradictoires CSS

/* Add the "!important" tag to the style you want to prioritize */
div {
	color: black;
  	color: red !important;
}
/* Font color will be red in the example. */
NachooCh