From 75ebbaa0338ee252a95d070017d1b53948873a9e Mon Sep 17 00:00:00 2001 From: Nicholas Lee Date: Thu, 16 Nov 2017 10:53:31 +0900 Subject: [PATCH] Fix list mark (#86) --- front-end/interview-questions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front-end/interview-questions.md b/front-end/interview-questions.md index bded37d5..a3f1f52a 100644 --- a/front-end/interview-questions.md +++ b/front-end/interview-questions.md @@ -508,7 +508,7 @@ I shall throw in a comparison with `block` for good measure. | Margins and paddings | All sides respected. | All sides respected. | Only horizontal sides respected. Vertical sides, if specified, do not affect layout. Vertical space it takes up depends on `line-height`, even though the `border` and `padding` appear visually around the content. | | Float | - | - | Becomes like a `block` element where you can set vertical margins and paddings. | -**What's the difference between a `relative`, `fixed`, `absolute` and `static`-ally positioned element?** +### What's the difference between a `relative`, `fixed`, `absolute` and `static`-ally positioned element?** A positioned element is an element whose computed `position` property is either `relative`, `absolute`, `fixed` or `sticky`.