CSS 전투: #3 - 푸시 버튼

이 기사에서는 Push Button에 대한 CSS Battle CSS 과제를 해결합니다. 먼저 problem을 살펴보겠습니다.

문제



CSS 속성만 사용하여 다음 컨테이너를 만들어야 합니다.

해결책



이제 솔루션과 이를 달성하는 방법을 살펴보십시오.

HTML




<div class="box"></div>
<div class="circle"></div>


여기에는 두 개div가 포함되어 있습니다. 하나는 상자용이고 다른 하나는 원용입니다.

CSS



이제 컨테이너의 스타일을 지정해 보겠습니다.


body {
  margin: 0;
  background: #6592CF
}
.box {
  background: #243D83;
  width: 300;
  height: 150;
  transform: translate(50px, 50%)
}
.circle {
  position: absolute;
  transform: translate(75px, -50%);
  background: #243D83;
  width: 150;
  height: 150;
  border: 50px solid #6592CF;
  border-radius: 999px
}
.circle::before {
  position: absolute;
  content: "";
  border-radius: 10rem;
  inset: 50px;
  width: 50;
  height: 50;
  background: #EEB850
}


Note: In CSS Battle you can use 100 instead of 100px. You don't need to define px in CSS. However, if you are using rem or % then you need to pass them separately. That's why in the above CSS code there are no units mostly. For more info visit here



코데펜





대체 솔루션



문자가 적고 단순하기 때문에 이것을 사용한 대체 솔루션이 많을 수 있습니다.

HTML




<p b></p>
<p c></p>


여기서는 <p> 태그를 사용하고 있으며 그 안에 있는 b는 상자를 나타내고 c는 원을 나타냅니다.

CSS




body {
  margin: 0;
  background: #6592CF
}
p[b] {
  background: #243D83;
  width: 300;
  height: 150;
  transform: translate(50px, 50%)
}
p[c] {
  position: absolute;
  transform: translate(75px, -63%);
  background: #243D83;
  width: 150;
  height: 150;
  border: 50px solid #6592CF;
  border-radius: 999px
}
p[c]::before {
  position: absolute;
  content: "";
  border-radius: 10rem;
  inset: 50px;
  width: 50;
  height: 50;
  background: #EEB850
}




Minify the code or CSS by using any CSS Minifier. It helps you to reduce the characters in the code that will increase score.



마무리



당신이 이것을 좋아한다면 그것을 ❤️하는 것을 잊지 마십시오. 그리고 다음 글에서 뵙겠습니다. 곧 봐요.

좋은 웹페이지 즐겨찾기