-
To make the element from block to inline, we need to use
- Display:inline
- Display:line
- Visible:line
- Visible:inline
-
To make the element from inline to block, we need to use
- Display:block
- Display:line
- Visible:line
- Visible:block
-
To make an element to generate a block box in the same line as adjacent content, we should use
- Display:inline-block
- Display:block
- Display:none
- Display:inline
-
To make an element visible and remove its space, we should use
- Display:hidden
- Visibility:invisible
- Display:none
- Visibility:hidden
-
To make element always display on the screed, we need use
- Position:fixed
- Position:static
- Position:absolute
- Position:relative
-
Default position of an element is
- Position:fixed
- Position:static
- Position:absolute
- Position:relative
-
To clear all the float effect of an element, we need to use
- Clear:both
- Clear:left
- Clear:right
- Clear:none
- Each block level element starts on a new line, and subsequent elements start on another line. True
- Using absolute position is a good way to display the element on the page. False
- Static positioned element is fixed with respect to the browser's viewport and does not move when scrolled. False
- To remove the space of an element, we should use 'display:none'. True
- To remove one element but keep the space, we should use 'visibility:hidden'. True
- Block Element
- Inline Element
- Grid Layout
- Flex Layout
- Inline-block Display Effect
- What are the main values of display property?
- What are the difference between grid and flex layout?
- What are the difference between position ways?
- Explain two ways to make an element invisible.
- What are the difference between inline and block element?