border로 둘러싸인 버튼

2362 단어 HTMLCSSscss슬림

목적



여러 테두리로 둘러싸인 디자인의 버튼을 만들고 싶습니다.


슬림
.box.parent
  .box.children
   .box.grandson

scss
.box {
  border-radius: 100px;
  &.parent {
    width: 600px;
    height: 150px;
    border: 4px solid green;
  }
  &.children {
    width: 580px;
    height: 130px;
    border: 4px solid blue;
    margin: 6px;
  }
  &.grandson {
    width: 560px;
    height: 110px;
    border: 4px solid red;
    margin: 6px;
  }
}

좋은 웹페이지 즐겨찾기