logo - 刷刷题
下载APP
【多选题】

What are the correct statements about link and import? ( )

A.
Import styles are used in the <head> tag as follows: <style>@import url("");</style>.
B.
When the page is loaded, the CSS referenced by link will not be loaded at the same time.
C.
CSS referenced by @import will not be loaded until all pages are downloaded.
D.
Pages that refer to CSS in the way of @import will appear unstyled flicker when loading.
举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸
举一反三

【单选题】Which of the following statements about floating is wrong? ( )

A.
The floating of elements is horizontal, which means that elements can only move left and right, but not up and down.
B.
Floating is very useful in web page layout.
C.
Elements before floating element will also be affected.
D.
The text element after the floating element will surround it.

【单选题】Which statement about style priority is incorrect? ( )

A.
Css styles directly defined on tags have the highest level.
B.
Internal styles have lower priority than inline styles.
C.
External style sheets have the lowest level.
D.
When the attributes in the style conflict, the preset comes into effect.

【单选题】The round dot before the unordered list item <li> can be removed by ( ) .

A.
clear:both;
B.
font-style:none;
C.
list-style:none;
D.
list-style:normal;

【多选题】(Multiple-choice question) In css, what are the common methods to clear floating? ( )

A.
Add an empty block element afterthefloating element.
B.
Add an empty line element after the floating element.
C.
Set the height of the parent element of the floating element.
D.
Set to clear floating by means of pseudo class.
E.
Set floating for parent elementof the floating element.

【多选题】(Multiple-choice question)Which options are right about floating element characteristics?

A.
Floating element is separated from the document flow.
B.
The float:top willset the element to float upwards.
C.
After the line element is set to float, the line element will automatically turn into a block element.
D.
Floating elements can not hold up the block that contains it.

【单选题】About the characteristics of floating elements, which of the following statements is wrong? ( )

A.
If the width of the container box is less than the sum of the widths of all floating elements, the floating elements will wrap. At this time, if the heights of the floating elements are different, a blank block will appear.
B.
Floating elements occupy the original space.
C.
The text will surround the floating element when the floating element is with the text.
D.
Floating can only float left and right, not up and down.

【单选题】Which option is wrong about float? ( )

A.
float:left
B.
float:center
C.
float:right
D.
float:none