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>
<ul>
<li>로그인</li>
<li>회원가입</li>
<li>회사소개</li>
<li>고객센터</li>
</ul>
css
li:first-child {
color: red;
}
li:last-child {
color: blue;
}
li:nth-child(2n) {
color: gray;
}
li:before {
content:"***";
}
li:after {
content: "---";
}
<link rel="stylesheet" type="text/css" href="css/style.css">
background-image: url(../img/icon.png);
html
<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>
</ul>
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 */
.friends-lists .friends-list a .friend-info .friend-name {
font-size: 50px;
color: red;
}
html
<ul class="living-lists">
<li class="living-item">
<a href="#">
<img src="https://via.placeholder.com/170X114" class="living-thumnail">
<div class="living-info">
<span class="type">리빙</span>
<h3 class="title">30평대 아파트, 따뜻한 느낌의 침실</h3>
<p class="paragraph">Nice to meet youNice to meet youNice to meet youNice to meet you</p>
<div class="date-wrap">
<span class="source">유닛</span>
<span class="date">3개월 전</span>
</div>
</div>
</a>
</li>
</ul>
css
.living-lists {
list-style: none;
}
.living-lists .living-item a {
color: #000000;
text-decoration: none;
}
.type {
color : #c08d31;
font-weight: 700;
font-size: 12px;
}
.title {
font-size: 13px;
color: #000000;
}
.paragraph {
font-size: 13px;
color: #404040;
line-height: 20px;
}
.source,.date {
font-size: 12px;
color: #505050;
}
.date {
color: grey;
}
.date:before {
content: '-';
}
.living-lists .living-item a:hover .living-info .title {
text-decoration: underline;
}
.living-lists .living-item:hover {
background-color: pink;
}
일단 링크가 자꾸 안되어서 멘탈이 부서졌던 것 같다. 인터넷에서 새로고침도 해보고 캐시도 제거해보고 근데 결국은 사람의 문제였던 것으로 밝혀졌다.
구글 검색을 통해 여러가지 방법을 해보았지만 해결되지않았고 처음부터 코드를 전부다 뜯어서 천천히 확인하여 문제를 해결하였다.
매일매일 새롭게 배우는게 재밌고 활용도가 높다고 느꼈다. 그리고 개발노트를 숙제확인장처럼 사용하고 내가 공부할 파일은 따로 만들고 메모장에 적어둔 노트를 저장하고 이런식으로 사용했는데 오늘 방식을 조금 바꿔보았다.
이 개발자노트를 보고 오늘 배운 내용 모두를 복습할 수 있도록 가독성과 방식을 바꾸어보았고 주말을 통해 공부해보고 이 방식을 계속 적용할지 생각해볼것이다.