"Tailwindcss .border-x-group"의 두 판 사이의 차이

(새 문서: ==개요== ;tailwindcss .border-x-group <syntaxhighlight lang='css'> .border-x-group { @apply border-r; } .border-x-group:first-of-type { @apply border-l; } </syntaxhighlight>...)
 
 
(같은 사용자의 중간 판 3개는 보이지 않습니다)
3번째 줄: 3번째 줄:
<syntaxhighlight lang='css'>
<syntaxhighlight lang='css'>
.border-x-group {
.border-x-group {
    @apply border-l;
}
.border-x-group:last-of-type {
     @apply border-r;
     @apply border-r;
}
.border-x-group:first-of-type {
    @apply border-l;
}
}
</syntaxhighlight>
</syntaxhighlight>
12번째 줄: 12번째 줄:


==같이 보기==
==같이 보기==
* [[CSS :last-of-type]]
* [[tailwindcss border group]]
* [[tailwindcss .border-y-group]]
* [[tailwindcss .border-y-group]]
* [[tailwindcss .rounded-x-group]]
* [[tailwindcss .rounded-x-group]]


[[분류: tailwindcss]]
[[분류: tailwindcss]]

2022년 5월 15일 (일) 17:36 기준 최신판

1 개요[ | ]

tailwindcss .border-x-group
css
Copy
.border-x-group {
    @apply border-l;
}
.border-x-group:last-of-type {
    @apply border-r;
}


2 같이 보기[ | ]