In the markup below, I am trying to target three specific points using CSS.
- img
- style*=right
- class=media-element
I attempted to use the code below, which did not work:
img[style*="right"][class="media-element"] {margin-left:10px;}
However, selecting the style using the following code was successful:
img[style*="right"]...