Q1: What is the CSS box model?
Answer: CSS Box model surrounds the info within HTML or the HTML Element.
Q2:What is the difference between margin and padding?
Answer: Margin creates space around the HTML element, outside the borders. Padding is similar, but it is within the borders.
Q3:How is an HTML element height and width determined?
Answer: HTML element height and width is determined using the height and width properties.
Q4: Explain this CSS property: padding:25px 50px;
Answer: This property is ordered by top, right, bottom, and left. The padding is set as the top for 25px and the right for 50px.
Q5:What is the difference between a border and an outline?
Answer: The Outline is a line that is around outside of the borders, which makes the elements stand out. The Border is within the Outline and has style, width, and color properties.