2010. 3. 3. 16:04
프로그래밍/HTML&CSS
아래 CSS는 FireFox에서 동작하지않는다.(text-overflow:ellipsis)
다음과 같은 XML 파일을 생성해준다.
그리고 CSS에서 다음과 같이 설정해주면된다.
.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' ); |
} |
'프로그래밍 > HTML&CSS' 카테고리의 다른 글
호환성 보기 meta tag 동작하지 않을때... (0) | 2015.03.17 |
---|---|
Color Converter(RGB/Hex Code) (0) | 2014.01.14 |
IE6 CSS 버그(height) (0) | 2010.03.02 |
IE6에서 CSS 버그(float, margin) (0) | 2010.03.02 |
float을 clear하는 4가지 방법. (0) | 2009.12.22 |