Jump to content

div not rotating in ie


freelance84

Recommended Posts

Rotating a div

 

I got the tutorial from http://snook.ca/archives/html_and_css/css-text-rotation

 

Bacisally i've got it working in ff chrome opera..... but not ie.

 

Here's my css:

.progress_percent{
display: block;

-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);

filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=6);

-o-transform: rotate(-90deg) translate(7px,0px);

position:relative;
font-size: 8pt;
white-space: nowrap;
margin-top: 16em;
margin-right: 0.2em;
}

 

The div i am applying it to is as the following:

<div class="navigation">
<div class="navigation_content"></div>
<div class="navigation_progress_bar" style="height:9%"></div>
<div class="progress_percent">9% complete</div>
</div>

Link to comment
https://forums.phpfreaks.com/topic/217685-div-not-rotating-in-ie/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.