CSS餐廳選擇器(CSS dinner)

2021-10-10 04:51:57 字數 809 閱讀 9259

遊戲位址

答案:元素選擇器: plate

bento

id選擇器:#fancy

id選擇器+後代選擇器:

#facy pickle

類選擇器:.small

orange.small

bento orange.small

並集選擇器:

plate,bento

all: *

plate *

選擇跟隨另乙個元素的元素:

bento~pickle

選擇另乙個元素中的第乙個子元素:

orange:first-child

plate>:only-child

:nth-child(3)

bento:first-of-type

plate:nth-of-type(even)

plate:nth-of-type(2n+3)

.small:last-of-type

bento:empty

[for]

plate[for]

bento[for=「vitaly」]

[for=「sam」],[for=「sarah」]

[for="h

ayat

o"],

[for

="hayato"],[for

="haya

to"]

,[fo

r=「minato」]

[for*=「robbie」],[for*=「bobby」]

you did it!

you rock at css.

css選擇器 CSS選擇器總結

在前不久的專案中,實習小妹妹在乙個全域性的樣式中使用了下面這個css選擇器 content 對應的html結構大致是 實習妹子大致的意思是想要讓content下的子元素div的高度100 但是貌似她沒有真正理解first child的意義,從而導致這個全域性的樣式讓 所有頁面都出現了問題,然後我就只...

CSS選擇器 復合選擇器

選擇器 名稱 說明 css 版本 通用選擇器 選擇所有元素 2元素選擇器 選擇指定型別的元素1 id 選擇器 選擇指定 id 屬性的元素1.class 選擇器 選擇指定 class 屬性的元素 1 attr 系列 屬性選擇器 選擇指定 attr 屬性的元素 2 3 s1,s2,s3 分組選擇器 選擇...

CSS選擇器 屬性選擇器

最近重新學習了css3,發現選擇器還能這麼玩。介紹一下屬性選擇器 我給咱們順著往下縷一縷 資訊量挺大 剛開始是這樣子 如下 doctype html head meta charset utf 8 title 測試網頁 title style h1 m1 style head body div h1...