250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- button
- keyframes
- effect
- jQuery
- CSS
- 애니메이션
- 풀스택
- SWIFT
- iOS 개발자
- html5
- php
- ipad
- HTML
- 자바스크립트
- react
- 프론트엔드
- xcode
- 비전공 개발자
- front-end
- MAC
- 비전공자
- Animation
- javascript
- css3
- image
- 백엔드
- iPhone
- 개발자
- hover
- IOS
Archives
- Today
- Total
비전공자 개발일기
HTML_CSS GRID 본문
728x90
SMALL
HTML
<!DOCTYPE html>
<html>
<head>
<title>GRID</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>
<div class="div4"></div>
<div class="div5"></div>
<div class="div6"></div>
</body>
</html>
CSS
body {
margin: 0;
}
.div1 {
background-color: #ff0000;
width: 100%;
height: 60px;
}
.div2 {
background-color: #ffa500;
width: 100%;
height: 350px;
}
.div3 {
background-color: #ffff00;
width: 100%;
height: 320px;
}
.div4 {
background-color: #008000;
width: 100%;
height: 385px;
}
.div5 {
background-color: #0000ff;
width: 100%;
height: 200px;
}
.div6 {
background-color: #4b0082;
width: 100%;
height: 200px;
}
// tablet
@media (min-width: 768px) {
div {
float: left;
}
.div2 {
height: 562px;
}
.div3 {
height: 282px;
}
.div4 {
width: 50%;
height: 360px;
}
.div5 {
width: 50%;
height: 180px;
}
.div6 {
width: 50%;
height: 180px;
}
}
//desktop
@media (min-width: 992px) {
.div2 {
width: 50%;
height: 700px;
}
.div3 {
width: 50%;
height: 350px;
}
.div4 {
width: 25%;
height: 350px;
}
.div5 {
width: 25%;
height: 175px;
}
.div6 {
width: 25%;
height: 175px;
}
}
728x90
LIST
'HTML _CSS' 카테고리의 다른 글
HTML (0) | 2021.08.16 |
---|---|
HTML_CSS GRID (0) | 2021.08.08 |
CSS - SCSS (0) | 2021.08.01 |
CSS - BootStrap (0) | 2021.07.31 |
CSS (0) | 2021.07.27 |