Masood S
Masood S

Reputation: 11

ie7 BUG : padding left and right with direction rtl

I'm create a web page with direction rtl . when id set padding-right for a inline element like span , the padding set for left side in IE7 !!

HTML :

<div dir='rtl'>
    <span style='padding-right:30px;background:red'>Test</span>
</div>

Upvotes: 0

Views: 445

Answers (1)

Scott
Scott

Reputation: 21890

<div style="direction: rtl;"></div>

or

<bdo dir="rtl"></bdo>

I believe you're using the property incorrectly. See the www3 specs --- > HERE and HERE

Upvotes: 1

Related Questions