컨텐츠 타이틀 만들기
참조 : 'Tistory 블로그 치환자'
이번글의 목표는 본문제목을 아래와 같이 꾸미려고합니다.
본문글을 넣고 싶은 위치에 다음 코드를 삽입합니다.
HTML
- <s_article_rep>
- <div class="entry">
- <div class="titleWrap">
- <div id="title_left">
- </div>
- <div id="title_top">
- 응용프로그램
- </div>
- <div id="title_middle">
- Tistory블로그 스킨제작 - 본문제목 코딩
- </div>
- <div id="title_bottom">
- 2017. 1. 27. 22:52 | posted by zelkova
- </div>
- </div>
- </div>
- </s_article_rep>
8줄
응용프로그램 : 본문 글의 카테고리를 표시합니다.
11줄
Tistory블로그 스킨제작 - 본문제목 코딩 : 본문 글의 제목을 표시합니다.
14줄
2017. 1. 27. 22:52 : 본문글의 작성일자
zelkova : 작성자를 표시합니다.
CSS
- .titleWrap{
- position:relative;
- margin-left:10px;
- margin-top:5px;
- width:98%;
- height:95px;
- font-family:"굴림";
- }
- #title_left{
- float:left;
- width:30px;
- height:85px;
- background-color:#faedd2;
- }
- #title_top{
- float:left;
- width:523px;
- height:20px;
- text-align:left;
- padding-top:2px;
- padding-left:10px;
- background-color:#d0eaed;
- }
- #title_middle{
- float:left;
- width:533px;
- height:41px;
- font-size:35px;
- font-weight:900;
- background-color:#eff6e7;
- }
- #title_bottom{
- float:left;
- width:523px;
- height:23px;
- text-align:left;
- padding-left:10px;
- color:#aaaaaa;
- background-color:#eff6e7;
- }
HTML과 CSS를 배우셨다면 쉽게 이해하실거라 믿습니다 ^-^
반응형
'응용프로그램' 카테고리의 다른 글
3Dmax - 세면대 (0) | 2017.05.01 |
---|---|
3Dmax - 의자만들기 (0) | 2017.04.28 |
autoHotKey - 키보드, 마우스 약어 (0) | 2016.09.25 |
Unity5 빌드에러 bundle identifier has not been set up correctly (0) | 2016.07.23 |
The variable animator of Player_Ctrl has not been assigned. You probably need to assign the animator variable of the ... script in the inspector (0) | 2016.07.21 |