[Webkit-unassigned] [Bug 52511] New: Ignore left property if right property exists

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Jan 15 05:53:04 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=52511

           Summary: Ignore left property if right property exists
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows 7
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: takmahdi at gmail.com


Hi,

In below code image tag must show at right side of div but, showed at left side.

#comments {
    position: relative;
    width: 400px;
}
#comments img {
    position: absolute;
    left: 10px;
}
.rtl #comments img {
    right: 10px;
}

<body class="rtl">

    <div id="comments">

        <img src="..." />

        <ul>
            <li></li>
            ...
        </ul>

    </div>
</body>

Thanks,
Mahdi

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list