diff --git a/4. Advanced Inline Layout/ADVANCED_INLINE_LAYOUT.md b/4. Advanced Inline Layout/ADVANCED_INLINE_LAYOUT.md index 008b635..cb57961 100644 --- a/4. Advanced Inline Layout/ADVANCED_INLINE_LAYOUT.md +++ b/4. Advanced Inline Layout/ADVANCED_INLINE_LAYOUT.md @@ -49,3 +49,7 @@ The `calc` property is used when you want to combine two units of measure togeth Example: If you have a fixed width element (e.g. a logo) in line with an element that has a % width + +```css +width: calc(100% - 200px); +```