diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-25 01:25:15 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-01-08 22:16:29 +0100 |
commit | 787905a585ba2ccb80d80c1d52dbea716085ec6a (patch) | |
tree | 135e7caf0431fe7aa3fc0da4623b379f630b5925 /test/html/render/min-width-nested-div.html | |
parent | dbdf01c83e4a0c04cd1ed517eee1ab985c35f909 (diff) |
Add min-width and max-width CSS tests
Diffstat (limited to 'test/html/render/min-width-nested-div.html')
-rw-r--r-- | test/html/render/min-width-nested-div.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/html/render/min-width-nested-div.html b/test/html/render/min-width-nested-div.html new file mode 100644 index 00000000..149ff2a9 --- /dev/null +++ b/test/html/render/min-width-nested-div.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test min-width CSS property</title> + <style> + body {margin: 20px} + .container {background: lightcyan} + .test {min-width: 400px; display: inline-block; background: lightgrey} + </style> + </head> + <body> + <div class="container"> + <div class="test"> + <p>Hello</p> + </div> + </div> + </body> +</html> |