|
|
Flipping text using style sheets - text effects in Internet ExplorerInternet Explorer displays several text effects through style sheets. Here I'll show you how to flip a piece of text horizontally and vertically. The horizontal and vertical flips are made using the filter rule through which we specify horizontal fliph() or vertical flipv() flips. The height and the width rules are important too. Note: These style sheet commands do not work in Netscape 4.7. Horizontal Flip Vertical Flip The horizontal flip style sheet
{height:50;
width:400;
font-size:20pt;
font-weight:bold;
filter:fliph()}
The vertical flip style sheet
{height:50;
width:400;
font-size:20pt;
font-weight:bold;
filter:flipv()}
Page contents: Learn the Fliph and Flipv style sheet filter properties to display flipped text in Internet Explorer.
Page URL: http://www.webdevelopersnotes.com/tips/html/ flipping_text_using_style_sheets_text_effects_in_internet_explorer.php3
|
|