마크다운 문법으로 티스토리 글을 작성하면서 관련 팁 - 글자 색상, 이미지 크기조정, 캡션삽입 방법을 정리합니다.
글자 색 관련
색상
red
파랑
초록
Strong
그레이
노랑
<span style="color: red">red</span>
<span style="color: #0000FF">파랑</span>
<span style="color: #008000">초록</span>
<span style="color: #2D3748; background-color:#fff5b1;"> Strong</span>
<span style="color: #808080">그레이</span>
<span style="color: #ffd33d">노랑</span>
형광펜
노란형광펜
회색형광펜
파랑형광펜
빨강형광펜
초록형광펜
보라형광펜
주황형광펜
<span style='background-color: #fff5b1'>노란형광펜</span>
<span style='background-color: #f6f8fa'>회색형광펜</span>
<span style='background-color: #f1f8ff'>파랑형광펜</span>
<span style='background-color: #ffdce0'>빨강형광펜</span>
<span style='background-color: #dcffe4'>초록형광펜</span>
<span style='background-color: #f5f0ff'>보라형광펜</span>
<span style='background-color: #F7DDBE'>주황형광펜</span>
이미지 크기 조정
크기조정 - 마크다운
이미 css에 지정되어있으면, 마크다운에서 작성한 내용이 반영되지 않을 수 있음
## 마크다운
# 사이즈 직접지정 (px)
![title](/imges/img.png){: width="100" height="100"}
# (차지할 수 있는) 전체범위의 몇퍼센트를 차지할 지
![title](/imges/img.png){: width="100%" height="100%"}
크기조정 - css/html
## css 클래스 사용
# css 클래스 생성
.custom {
width:100;
height:100;
}
# 생성된 css 클래스를 마크다운에서 불러오기
![title](/imges/img.png){: .custom}
## html
<img src="/imges/img.png" width="300" height="300">
이미지 캡션 삽입
이미지 캡션 삽입 - 마크다운 표
|<b>A graph displaying three clusters</b> |
| :--: |
| ![](https://developers.google.com/machine-learning/clustering/images/ClusterUnlabeled.png)|
A graph displaying three clusters |
---|
이미지 캡션 삽입 - html
- 두 개의
<p>
태그
<p align = "center">
<img src = "https://developers.google.com/machine-learning/clustering/images/ClusterUnlabeled.png">
</p>
<p align = "center">A graph displaying three clusters
</p>
A graph displaying three clusters
- 하나의
<p>
태그
<!--하나의 p로 묶기-->
<p align = "center">
<img src = "https://developers.google.com/machine-learning/clustering/images/ClusterUnlabeled.png">
A graph displaying three clusters
</p>
A graph displaying three clusters
이미지 캡션 삽입 - html
<figure align = "center">
<img src="https://developers.google.com/machine-learning/clustering/images/ClusterUnlabeled.png" style="width:100%">
<figcaption><b>A graph displaying three clustersr</b></figcaption>
</figure>
A graph displaying three clustersr
'Records > Info Memo' 카테고리의 다른 글
[구글크롬] 확장프로그램 추천 (0) | 2021.11.08 |
---|---|
[GCP] Google Cloud Skill Boost Promotion - 구글 코세라 강의 한달 무료 등록 (0) | 2021.11.07 |
[Datascience] 데이터사이언스 레퍼런스 문서/강의 링크 모음 (0) | 2021.10.07 |
[Tistory] 티스토리 스킨 수정 내역 (0) | 2021.08.04 |
[Notion] 노션 관련 팁 정리 - 이모티콘 (0) | 2021.04.25 |