블로그 이미지
암초보

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

Tag

05-03 03:02
2010. 3. 3. 16:04 프로그래밍/HTML&CSS
아래 CSS는 FireFox에서 동작하지않는다.(text-overflow:ellipsis)
.ellipsis {
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}


다음과 같은 XML 파일을 생성해준다.

<?xml version="1.0"?>
<bindings 
    xmlns="http://www.mozilla.org/xbl" 
    xmlns:xbl="http://www.mozilla.org/xbl" 
>
    <binding id="ellipsis">
        <content>
            <xul:description crop="end" xbl:inherits="value=xbl:text">
                <children/>
            </xul:description>
        </content>
    </binding>
</bindings>





그리고 CSS에서 다음과 같이 설정해주면된다.
.ellipsis {
    text-overflow: ellipsis;
    -moz-binding: url('ellipsis.xml#ellipsis');
}
posted by 암초보