CSSの役割:範囲外のセレクター
CSS:out-of-rangeセレクターを使用して、指定された範囲外の値で要素のスタイルを設定します。
例
次のコードを実行して、:out-of-rangeセレクターを実装してみてください
<!DOCTYPE html>
<html>
<head>
<style>
input:out-of-range {
border: 3px dashed orange;
background: yellow;
}
</style>
</head>
<body>
<input type = "number" min = "5" max = "10" value = "15">
<p>The style only works for the value entered out of range</p>
</body>
</html> -
CSSの役割:nth-last-of-type(n)セレクター
CSS:nth-last-of-type(n)セレクターを使用して、最後の子から数えて、親の2番目の要素であるすべての要素を選択します。 例 次のコードを実行して、:nth-last-of-type(n)セレクターを実装してみてください。 <!DOCTYPE html> <html> <head> <style> p:nth-last-of-type(2) {
-
CSSの役割:nth-last-child(n)セレクター
CSS:nth-last-child(n)セレクターを使用して、最後の子から数えて、親の子であるすべての要素のスタイルを設定します。 次のコードを実行して、:nth-last-child(n)セレクター-を実装してみてください。 例 <!DOCTYPE html> <html> <head> <style> p:nth-last-child(4) {