Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How can I disable ligatures and still allow pages to use their own fonts?

more options

I often save to PDF or mark text then transfer it into a document. Firefox renders many letter combinations as ligatures: ff, fi, ffi, fl, and more. I don't want ligatures. The cures proposed have involved forbidding pages to use their own fonts. Is there another way?

I often save to PDF or mark text then transfer it into a document. Firefox renders many letter combinations as ligatures: ff, fi, ffi, fl, and more. I don't want ligatures. The cures proposed have involved forbidding pages to use their own fonts. Is there another way?

선택된 해결법

You can override CSS rules supplied by the webpage with your own rules in userContent.css by appending the "!important" flag to each property value.

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (4)

more options

You could possibly use code in userContent.css to disable ligatures.


More info about userChrome.css/userContent.css in case you are not familiar:

You need to set this pref to true in about:config to enable userChrome.css and userContent.css in Firefox 69+.

도움이 되셨습니까?

more options

I'm talking about pages authored by others, not myself.

도움이 되셨습니까?

more options

선택된 해결법

You can override CSS rules supplied by the webpage with your own rules in userContent.css by appending the "!important" flag to each property value.

도움이 되셨습니까?

more options

Thanks. I've never written a CSS so I took a minute to figure it out. For those as slow as I am:

body{

   font-variant-ligatures:	none; !important

}

in chrome/userContent.css

It annoys me that it's in the 'chrome' subdirectory, a subdirectory I didn't have until now. Why doesn't Firefox have its own?

도움이 되셨습니까?

질문하기

글에 답글을 달기 위해서는 계정으로 로그인해야만 합니다. 계정이 아직 없다면 새로운 질문을 올려주세요.