-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add min-width and max-width CSS test page
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Test min-width and max-width CSS properties</title> | ||
<style> | ||
body {margin: 20px} | ||
.min {width: 400px; background: lightgreen} | ||
.max {width: 600px; background: lightgreen} | ||
.test {min-width: 400px; max-width: 600px; background: lightgrey} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="min"> | ||
<p>By resizing the window, the content below in gray should stay | ||
within the limits of minimum and maximum width.</p> | ||
<p>Minimum width 400 px</p> | ||
</div> | ||
<div class="test"> | ||
<p>This is a rather long text to increase the maximal paragraph | ||
width. Sed ut perspiciatis, unde omnis iste natus error sit | ||
voluptatem accusantium doloremque laudantium, totam rem aperiam | ||
eaque ipsa, quae ab illo inventore veritatis et quasi architecto | ||
beatae vitae dicta sunt, explicabo. nemo enim ipsam voluptatem, | ||
quia voluptas sit, aspernatur aut odit aut fugit, sed quia | ||
consequuntur magni dolores eos, qui ratione voluptatem sequi | ||
nesciunt, neque porro quisquam est, qui dolorem ipsum, quia dolor | ||
sit, amet, consectetur, adipisci velit, sed quia non numquam eius | ||
modi tempora incidunt, ut labore et dolore magnam aliquam quaerat | ||
voluptatem. ut enim ad minima veniam, quis nostrum exercitationem | ||
ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi | ||
consequatur?</p> | ||
</div> | ||
<div class="max"><p>Maximum width 600 px</p></div> | ||
</body> | ||
</html> |