From 41df487903457ba28a821d15cd760d0570070600 Mon Sep 17 00:00:00 2001 From: UbaidRussell Date: Mon, 2 Oct 2023 23:10:09 -0400 Subject: [PATCH] Updated README.MD --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3de486a..818099a 100755 --- a/README.md +++ b/README.md @@ -50,11 +50,12 @@ Users should be able to: ### What I learned +This code snippet shows how I used the contain property to make the image not overflow the container. This is a very useful property and I will be using it in the future when it comes to keeping elements contained inside their containers. ```css -.proud-of-this-css { - color: papayawhip; -} + body{ + contain:strict; + } ``` ### Continued development