li {
display: flex;
align-items: center;
}
li::before {
content: '';
display: block;
width: 1px;
height: 18px;
margin-left: 12px;
background-color: #d2d2d3;
}
li:first-child::before {
content: none;
}
https://goddino.tistory.com/43
text-decoration:line-through
[CSS] 취소선 (text-decoration:line-through) https://zinee-world.tistory.com/234
button 배경 없애기
.callcenterBtn {
padding: 10px 15px;
border-radius: 20px;
color: white;
background: none;
}
background-color가 아니라 background 속성을 쓴다.
<hr> 태그 두께 설정
hr {
border: 0;
height: 1px;
background: white;
}
border를 0으로 한 뒤, height로 두께를 정해야 한다. 그래야 두께도 변경하고 색깔도 바꿀 수 있다. 색깔은 color로는 불가능하고, background나 background-color로 적용할 수 있다.
http://daplus.net/html-hr-%ED%83%9C%EA%B7%B8%EC%9D%98-%EB%91%90%EA%BB%98%EB%A5%BC-%EB%B3%80%EA%B2%BD%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95/https://zetawiki.com/wiki/HTML_hr_%ED%83%9C%EA%B7%B8_%EB%91%90%EA%BB%98_%EC%A7%80%EC%A0%95
'TIL' 카테고리의 다른 글
[TIL-138] 위코드 39일차: Project 1 - CSS (0) | 2022.03.03 |
---|---|
[TIL-137] 위코드 38일차: JS 코드카타 (0) | 2022.03.02 |
[TIL-135] 위코드 36일차: JS 코드카타 (0) | 2022.02.28 |
[TIL-133~134] 위코드 34~5일차: React JS - Monster (0) | 2022.02.27 |
[TIL-132] 위코드 33일차: JS 코드카타 (0) | 2022.02.25 |