일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 안드로이드 배경화면
- 아이폰 바탕화면
- 안드로이드 개발 강좌
- 안드로이드 개발
- 영어
- 안드로이드 바탕화면
- 하루한마디영어
- 스마트폰 배경화면
- sky 시리우스폰
- 안드로이드2.0
- android
- Form Stuff
- objective-c
- 인기있는 블로그 만들기
- 안드로이드 2.0 개발
- SKY 시리우스
- 안드로이드폰
- 아이폰 배경화면
- 구글안드로이드
- 안드로이드개발
- 안드로이드 개발 2.0
- 안드로이드
- 구글 안드로이드
- 하루 한마디 영어
- 안드로이드2.0개발
- MapView
- 안드로이드 개발 2.0 강좌
- 스카이 안드로이드폰 시리우스
- 스카이 안드로이드폰 시리우스 K양 동영상
- 구글 안드로이드 개발
- Today
- Total
moozi
7/20 media02.html 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>미디어쿼리 연습</title>
<style>
*{margin: 0;padding:0;}
@media screen and (max-width:767px){
#header{
height:170px;
background-color: dodgerblue;
color:white;
}
#article1{
width:100%;
background-color: lightskyblue;
color:white;
height:250px;
float:left;
}
#section{
width:100%;
height:300px;
float:left;
}
#article2{
width:100%;
height: 200px;
background-color: cadetblue;
color:white;
float:left;
text-align: center;
}
#footer{
clear:both;
height: 50px;
line-height: 50px;
text-align: center;
background-color: azure;
}
}
@media screen and (min-width:768px) and (max-width:959px){
#header{
height:170px;
background-color: dodgerblue;
color:white;
}
#article1{
width:50%;
background-color: lightskyblue;
color:white;
height:500px;
float:left;
}
#section{
width:50%;
height:500px;
float:left;
}
#article2{
width:100%;
height: 200px;
background-color: cadetblue;
color:white;
float:left;
text-align: center;
}
#footer{
clear:both;
height: 50px;
line-height: 50px;
text-align: center;
background-color: azure;
}
}
@media screen and (min-width:960px){
#header{
height:170px;
background-color: dodgerblue;
color:white;
}
#article1{
width:15%;
background-color: lightskyblue;
color:white;
height:500px;
float:left;
}
#section{
width:70%;
height:500px;
float:left;
}
#article2{
width:15%;
height: 500px;
background-color: lightskyblue;
color:white;
float:left;
}
#footer{
clear:both;
height: 50px;
line-height: 50px;
text-align: center;
background-color: azure;
}
}
</style>
</head>
<body>
<div id="header">
<h1>TIS정보기술교육센터</h1>
</div>
<div id="article1">
<h3>개설과정</h3>
<ul>
<li>웹표준UI/UX</li>
<li>Java</li>
<li>안드로이드</li>
</ul>
</div>
<div id="section">
<h2>TIS정보기술교육센터 소개</h2>
<p>TIS정보기술교육센터에서는 정부지원IT전문교육과정을 운영하고 있습니다.</p>
</div>
<div id="article2">
<ul>
<li>개강일정</li>
<li>FAQ</li>
<li>Board</li>
</ul>
</div>
<div id="footer">
<h5>©TIS정보기술교육센터</h5>
</div>
</body>
</html>
'TIS_2016 > HTML5_3기' 카테고리의 다른 글
7/20 수업 예제 파일 (0) | 2016.07.20 |
---|---|
html연습문제05 (0) | 2016.07.20 |
html연습문제04 (0) | 2016.07.19 |
7/19 수업 예제 파일 (0) | 2016.07.19 |
html연습문제03 (0) | 2016.07.18 |