____value is use to display and element as an inline element a) inline b) block c) none d) block - inline
Attachments:
Answers
Answered by
3
Answer:
Option (A) is correct
hope it helps you
Answered by
2
Answer:
Inline, optaion A
Explanation:
Every HTML element has a default display value, depending on what type of element it is.
There are two display values: block and inline.
Block-level Elements
A block-level element always starts on a new line and takes up the full width available (stretches out to the left and right as far as it can).
The <div> element is a block-level element.
Example
<div>Hello World</div>
Similar questions