-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More position absolute and grid tests.
- Loading branch information
Showing
3 changed files
with
62 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,19 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<style> | ||
</style> | ||
</head> | ||
<body> | ||
abc<div style="position: absolute; top: 30px">123</div>def | ||
<br/> | ||
<br/> | ||
<br/> | ||
<br/> | ||
<div style="contain: strict; height: 41px; width: 44px"> | ||
<div style="display: grid; grid-template-columns: 22px 22px; grid-template-rows: 16px;"> | ||
abc<div style="position: absolute; top: 22px">123</div>def | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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,19 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<style> | ||
</style> | ||
</head> | ||
<body> | ||
abc<span>def<br/>ghi</span>jkl | ||
<br/> | ||
<br/> | ||
<br/> | ||
<br/> | ||
<div style="contain: strict; height: 36px; width: 43px"> | ||
<div style="display: grid;"> | ||
<span>abcdef</span><span>ghijkl</span> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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,24 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<style> | ||
</style> | ||
</head> | ||
<body> | ||
<span style="background-color: rgba(255, 255, 0, 0.5);"> | ||
not area selected text | ||
<div style="position: absolute; top: 10px; color: rgba(255, 0, 0); width: 200px;"> | ||
this is area selected text | ||
</div> | ||
</span> | ||
<br/> | ||
<br/> | ||
<br/> | ||
<br/> | ||
<div style="contain: strict; height: 18px; width: 200px;"> | ||
<div style="position: absolute; color: rgba(255, 0, 0); width: 200px;"> | ||
this is area selected text | ||
</div> | ||
</div> | ||
</body> | ||
</html> |