- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
Gmail 에서 font-family 적용하기 본문
Gmail 에서 Java 프로그램으로 html 형식으로 메일을 보낼 때 font 가 제대로 적용되지 않는데, 태그 안에 style 속성을 적어주는 inline 형식으로 해야지만 Font가 적용된다.
Changing the font-family in Gmail
http://stackoverflow.com/questions/13719034/changing-the-font-family-in-gmail
Once you have done this, you can use css styling, but this must be done through inline styles i.e.
<div style="font-family: times, serif;">
as you cannot link to external stylesheets.
Edit: Email will ignore the
tbody
tag so try using adiv
orp
instead
그리고 그 Font 마저도 OS 안에 들어있는 font 로 지정해야지만 font 가 제대로 보인다고... (web font를 사용할 수 없다.)
Gmail not showing correct font
http://stackoverflow.com/questions/28747848/gmail-not-showing-correct-font?rq=1
Gmail does not support @font-face.
For you customize the font, you should write inline in each block of text that you have:
< span style="font-family: your-chosen-font">your text< /span>
Note: must be a font we have natively on Windows or Mac.
font-family 스타일을 inline 으로 tag 마다 넣어주지 말고, div 태그로 크게 감싸서 한번만 넣어주면 그 안의 태그들에 모두 적용되서 보인다.
'프로그래밍' 카테고리의 다른 글
생활 코딩 (0) | 2016.03.19 |
---|---|
GAS(Google Apps Script)를 활용하여 업무보고 자동화 하기 (0) | 2016.03.09 |
Assembly 온라인 강의 (0) | 2015.10.22 |
프로젝트에서 강한 오라클 PL/SQL 프로그래밍(베스트 프랙티스 시리즈) (0) | 2015.10.14 |
IT프리랜서 Global 알선 사이트 (0) | 2015.10.14 |