I have created a CSS file that includes the following styles for div elements:
div {
height:auto;
float:left;
padding:0px;
margin:0px;
overflow:hidden;
text-align:left;
width:auto;
}
img {
border:none;
}
ul {
padding:0;
margin:0;
}
This CSS was applied across my entire HTML site. Now, I am attempting to integrate this HTML into a different script but the predefined styles in my CSS are conflicting with the styles used by that script, causing the page to appear broken. Can someone please advise on how I can exclude or prevent these predefined div styles from affecting the script so that it does not use the styles defined in my CSS?