학습한 내용
[html]
<a href="https://www.naver.com/">네이버</a>
<input type="text">
[css]
a:link {
color: red;
}
a:active {
color: blue;
}
a:hover {
color: pink;
}
input:focus {
border: solid 10px red;
}
[html]
<ul>
<li>메뉴1</li>
<li>메뉴2</li>
<li>메뉴3</li>
<li>메뉴4</li>
<li>메뉴5</li>
<li>메뉴6</li>
</ul>
[css]
li:first-child {
color: red;
}
li:last-child {
color: blue;
}
li:nth-child(2) {
color: gray;
}
li:nth-child(2n + 1) {
color: green;
}
li:first-child
: li 중 첫 번째에게 적용 (반대 개념 : last-child)[html]
<ul>
<li>로그인</li>
<li>회원가입</li>
<li>회사소개</li>
<li>고객센터</li>
</ul>
[css]
li:before {
content: "|";
}
li:after {
content: "---";
}
[html]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h1>Hello World</h1>
<div></div>
<img src="img/icon.png">
</body>
</html>
[css]
h1 {
color: red;
}
div {
width: 300px;
height: 300px;
background-image: url(../img/icon.png);
}
[html]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<ul class="friends-lists">
<li class="friends-list">
<a href="#">
<img src="https://via.placeholder.com/50" class="friend-thumbnail">
<div class="friend-info">
<h3 class="friend-name">김민호</h3>
<span class="friend-intro">Minho Kim</span>
</div>
</a>
</li>
<li class="friends-list">
<a href="#">
<img src="https://via.placeholder.com/50" class="friend-thumbnail">
<div class="friend-info">
<h3 class="friend-name">박지연</h3>
<span class="friend-intro">다정한 사람</span>
</div>
</a>
</li>
<li class="friends-list">
<a href="#">
<img src="https://via.placeholder.com/50" class="friend-thumbnail">
<div class="friend-info">
<h3 class="friend-name">한성은</h3>
<span class="friend-intro">헤헷</span>
</div>
</a>
</li>
</ul>
</body>
</html>
[css]
.friends-lists {
list-style: none;
}
.friends-lists .friends-list a {
color: #000000;
text-decoration: none;
}
.friends-lists .friends-list a .friend-thumbnail {
border: solid 2px gray;
border-radius: 20px;
}
.friends-lists .friends-list a .friend-info .friend-name {
font-size: 20px;
color: #000000;
}
.friends-lists .friends-list a .friend-info .friend-intro {
font-size: 15px;
color: #c8c8c8;
}
/* Custom - Cascading */
.friends-lists .friends-list a .friend-info .friend-name {
font-size: 30px;
color: blue;
}
.friends-lists {list-style: none;}
text-decoration: none;
: a 태그 때문에 생기는 언더바 제거.friends-lists .friends-list a .friend-thumbnail
: img 설정※ 캐스캐이딩을 이용해 덮어씌울 수 있다(custom)
[html]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<ul class="living-lists">
<li class="living-item">
<a href="#">
<img src="https://via.placeholder.com/170x114" class="living-thumbnail">
<div class="living-info">
<span class="type">리빙</span>
<h3 class="title">30평대 아파트, 따뜻한 느낌의 침실</h3>
<p class="paragraph">Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you </p>
<div class="data-wrap">
<span class="source">유닠</span>
<span class="date">3개월 전</span>
</div>
</div>
</a>
</li>
<li class="living-item">
<a href="#">
<img src="https://via.placeholder.com/170x114" class="living-thumbnail">
<div class="living-info">
<span class="type">리빙</span>
<h3 class="title">아이 있는 집 주방 1년 간의 소소한 변화</h3>
<p class="paragraph">Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you </p>
<div class="data-wrap">
<span class="source">miju</span>
<span class="date">1개월 전</span>
</div>
</div>
</a>
</li>
</ul>
</body>
</html>
[css]
.living-lists {
list-style: none;
}
.living-lists .living-item a {
color: #000000;
text-decoration: none;
}
.living-lists .living-item a .living-info .type {
color: #c08d31;
font-weight: 700;
font-size: 12px;
}
.living-lists .living-item a .living-info .title {
font-size: 13px;
color: #000000;
}
.living-lists .living-item a .living-info .paragraph {
font-size: 13px;
color: #404040;
line-height: 20px;
}
.living-lists .living-item a .living-info .data-wrap .source,
.living-lists .living-item a .living-info .data-wrap .date {
font-size: 12px;
color: #505050;
}
/* 캐스캐이딩 */
.living-lists .living-item a .living-info .data-wrap .date {
color: grey;
}
.living-lists .living-item a .living-info .data-wrap .date:before {
content: "- ";
}
.living-lists .living-item a:hover .living-info .title{
text-decoration: underline;
}
.living-lists .living-item:hover {
background-color: pink;
}
.living-lists .living-item a:hover .living-info .title
학습한 내용 중 어려웠던 점 또는 해결 못한 것들
강의를 보고 따라하는 것은 문제가 없었으나 브라우저에서 검사를 통해 직접 html과 css를 확인할 때 어려움을 겪었다.
해결 방법 작성
네이버에서 직접 html과 css 항목을 수정해보면서 필요한 정보를 빠르게 찾을 수 있도록 노력하였다.
학습 소감
점점 결과물이 시각적으로 나타나서 하나하나 완성할 때마다 뿌듯함을 느끼고 있다.