본문 바로가기

TIL

[TIL-136] 위코드 37일차: Project1 - CSS / JS 코드카타

 

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