### 只選擇雙數最後一個 兩個一行的排列時,若想選擇偶數的最後一個,當單數時不需要被選擇,可使用以下方式: ```css 第一種(選擇最後一個,除去奇數): li:last-child:not(:nth-child(odd)) 第二種(選取雙數後,只選擇最後一個): li:nth-child(even):nth-last-child(1) 第三種(同第一種): li:nth-child(2n):nth-last-child(1) 第四種(選取單數後的到數第二個的下一個): li:nth-child(odd):nth-last-child(2) + li { background-color: #0fc; } ``` 當三個一行時的排列,設定最後一列呈現不一樣的樣式(三欄): ```css li:nth-child(3n+1):nth-last-child(-n+3), li:nth-child(3n+1):nth-last-child(-n+3) ~ li { ... } ``` --- ### 選擇兩個類名之間的所有元素 ```css .start ~ :not(.end, .end ~ *) { } ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up