DEV Community

Discussion on: 5 CSS interview questions one should know [part 2]

Collapse
 
madhankumar028 profile image
Madhankumar

Thanks for such an effort to list down all the questions with answers.

I would like to add a basic question to your list.

Difference between inline and inline block element?
Answer:

  1. Inline element will not take height and width properties, where as inline-block element will take both.
  2. We can't move the inline element in vertical direction (margin top and bottom), where as inline-block can move in all the four directions.