아주 가끔씩 쓰게되서 찾게되는
css 선택자로 요소 1개 체크하는 방법...
:fisrt-child:last-of-child(1)
코드 예시
<div class="btns">
<button type="button">버튼 1</button>
<button type="button">버튼 2</button>
</div>
<div class="btns">
<button type="button">버튼 1</button>
</div>
<style>
.btns button:first-child{
border-radius: 20px 0 0 20px;
}
.btns button:last-child{
border-radius: 0 20px 20px 0;
}
.btns button:first-child:nth-last-child(1){
border-radius: 20px;
}
</style>
728x90
반응형
'WWWEB > CSS' 카테고리의 다른 글
갤럭시 폴드의 실제 가로 해상도는 345px (0) | 2024.01.29 |
---|---|
마우스 커서를 이미지로 변경하기 (0) | 2023.09.22 |
[CSS] ":nth-child()"로 몇 번부터 몇 번까지 선택하기 (0) | 2023.08.21 |
[css] 텍스트 안에 그라데이션 배경 움직여보기 (0) | 2023.06.08 |
최근 네이버 CSS 초기화 코드 (mo/pc) (0) | 2023.05.25 |
max-height를 이용한 부드럽게 열리는 더보기 (0) | 2023.05.10 |
[css] 모서리 종이 말려지는 효과를 만들어봄. (쏘 이지~) (2) | 2023.05.08 |
[css] clip-path를 이용한 텍스트 안 wave 애니메이션 (0) | 2023.04.26 |
댓글