filter: flipv();

Browser
  • IE
Type
  • Extension

The flipv filter specifies the vertical flip of the element.


#example {
filter: flipv();
}

Example

The original

<img src="image/friend.gif" alt="IMG" width="170" height="140">

Output
IMG

<div style="font: bold 170% sans-serif; width: 100%;">
Example text
</div>

Output
Example text
The vertical flip

<img src="image/friend.gif" alt="IMG" width="170" height="140" style="filter: flipv();">

Output
IMG

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

Output
Example text