I've been working on a premade packaged shopping cart website for a few months, and a lot of times when I've been trying to edit something, I have to use something like!important, for example:
div.myDiv
{
width: 400px !important;
}
Toin order to make it display as expected. Is this bad practice? Or is the !important command perfectly legalokay to use? Can this cause anything undesired further down the line?
Thanks :)