aotoyae

[CSS] 배경색 background-color 투명, 없애기 본문

CSS

[CSS] 배경색 background-color 투명, 없애기

aotoyae 2024. 2. 24. 23:05

 

 

💡 배경색 없애는 법 ~

background-color: transparent;

input {
  height: 50px;
  margin-bottom: 10px;

  border: none;
  border-bottom: 1px solid red;
  background-color: transparent; /* 이 부분!! */
}