The fliph filter specifies the horizontal flip of the element.
#example {
filter: fliph();
}
The original
<img src="image/friend.gif" alt="IMG" width="170" height="140">

<div style="font: bold 170% sans-serif; width: 100%;">
Example text
</div>
The horizontal flip
<img src="image/friend.gif" alt="IMG" width="170" height="140" style="filter: fliph();">

<div style="font: bold 170% sans-serif; width: 100%; text-align: right; filter: fliph();"> Example text </div>