일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 아이폰 바탕화면
- 안드로이드 바탕화면
- MapView
- 안드로이드 2.0 개발
- objective-c
- android
- 스마트폰 배경화면
- 구글 안드로이드
- 안드로이드 개발 2.0 강좌
- 영어
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드 개발 2.0
- Form Stuff
- 구글안드로이드
- 안드로이드
- 안드로이드개발
- 안드로이드 개발
- 하루한마디영어
- 아이폰 배경화면
- 안드로이드2.0
- 스카이 안드로이드폰 시리우스
- SKY 시리우스
- 안드로이드 배경화면
- sky 시리우스폰
- 하루 한마디 영어
- 인기있는 블로그 만들기
- 구글 안드로이드 개발
- 안드로이드2.0개발
- 안드로이드폰
- 안드로이드 개발 강좌
- Today
- Total
moozi
layout05.html 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>모바일레이아웃</title>
<style>
*{margin: 0;padding: 0;}
header{
height: 45px;
background-image: url(img/header_background.png);
position: relative;/* 부모는 relative */
text-align: center; /* 글자 가운데 정렬 */
line-height: 45px; /* 수직 가운데 정렬 */
}
header .left{
position: absolute; /* 자식은 absolute */
left:5px;
top:7px;
background-image: url(img/header_left_button.png);
text-indent: -999999px; /* 글자를 사라지게 */
width:62px;
height: 32px;
}
header .right{
position: absolute; /* 자식은 absolute */
right:5px;
top:7px;
background-image: url(img/header_right_button.png);
text-indent: -999999px; /* 글자를 사라지게 */
width:32px;
height: 32px;
}
</style>
</head>
<body>
<div id="wrap">
<header>
<a href="#" class="left">홈</a>
<h3>TIS정보기술교육센터</h3>
<a href="#" class="right">menu</a>
</header>
</div>
</body>
</html>
'TIS_2016 > 주말반_4기' 카테고리의 다른 글
반응형 웹페이지 샘플 - photo (0) | 2016.09.10 |
---|---|
반응형 웹 샘플 (0) | 2016.09.10 |
9/3 수업파일 (0) | 2016.09.03 |
layout04.html (0) | 2016.09.03 |
8/27 수업파일 (0) | 2016.09.03 |