I wrote CSS for my plugin, but theme CSS overwriting that, I have tried and searched for this I did not get any solution
This is my HTML code
<html>
<body>
<img src="sample.gif" width="100" height="132">
<h1>This is also some text. This is also some text. This is also some text. This is also some text. This is also some text. This is also some text.</h1>
</body>
</html>
my CSS is
img {
float: right !important;
}
And theme CSS is
h1 {
clear:both;
}
I want my image to be displayed to the right side of h1 tag.