返回卡包市场

css

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 24内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (24 张)

#1
正面 (问题)

declare that a page is using an external style sheet using html

背面 (解答)

#2
正面 (问题)

what is one difference in using @import vs a css style in regards to browsers

背面 (解答)

some browsers will hide @import from user in source

#3
正面 (问题)

when using css and @import, where does the @import need to be located

背面 (解答)

at the top, preceeding other elements

#4
正面 (问题)

in regards to @import, what is one disadvantage in regards to performance

背面 (解答)

each @import must call back to the server

#5
正面 (问题)

in css what does a universal selector accomplish

背面 (解答)

selects every element on a page

#6
正面 (问题)

how do you use a universal selector in css

背面 (解答)

*{ }

#7
正面 (问题)

browsers have a user agent style sheet that accomplishes what

背面 (解答)

sets a default style to elements on a page, i.e. padding, margin etc.

#8
正面 (问题)

the universal selector trumps inheritance in css t, or f

背面 (解答)

true

#9
正面 (问题)

in css what does a type selector accomplish

背面 (解答)

selects a page element i.e. h1, p, etc

#10
正面 (问题)

in css define a type selector

背面 (解答)

elementname { style properties }

#11
正面 (问题)

in css define a descendent selector

背面 (解答)

selector1 selector2 { style properties }

#12
正面 (问题)

in css define an element with two classes

背面 (解答)

div class=”class1 class2”

#13
正面 (问题)

in css define a descendent selector with the first element being a class

背面 (解答)

.class1 selector1

#14
正面 (问题)

in css which has more weight in importance, class or id

背面 (解答)

id

#15
正面 (问题)

in an external css style sheet, define a style for two classes

背面 (解答)

.class1, .class2 { style }

#16
正面 (问题)

in css what symbol defines a child combinator

背面 (解答)

>

#17
正面 (问题)

in css define a child combinator

背面 (解答)

an element directly nested within an element

#18
正面 (问题)

in css what symbol defines an adjacent sibling combinator

背面 (解答)

+

#19
正面 (问题)

in css define an adjacent sibling combinator

背面 (解答)

an element immediately following an element`

#20
正面 (问题)

in css what symbol defines every a general sibling combinator

背面 (解答)

~

#21
正面 (问题)

in css define a general sibling combinator

背面 (解答)

every sibling element of given element

#22
正面 (问题)

in css attribute selectors are decorated with what symbol

背面 (解答)

[ ] sq brackets

#23
正面 (问题)

in css select an element with a class of a specific name

背面 (解答)

a[class=”classname”]

#24
正面 (问题)

in css select an element with a text attribute

背面 (解答)

input[type=”text”]