I have tried the div[style] The problem is this is not the only element with inline styles
The HTML
<input class="button cool-button" style="float: right !important color:blue" value="Hello" name="hello">
<input class="button cool-button" style="float: right !important color:blue" value="World" name="hello">
<input class="button cool-button" style="float: right !important color:blue" value="Submit" name="submit">
I am targeting the submit button
This is how I attempted to over-ride the css on my external style sheet...
input.button .cool-button[style] [value="Submit"] [name="submit"] {
float: none !important;
}