File: position-fixed-root-element-flex.html

package info (click to toggle)
thunderbird 1%3A115.16.0esr-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,476,252 kB
  • sloc: cpp: 6,972,150; javascript: 5,209,211; ansic: 3,507,222; python: 1,137,609; asm: 432,531; xml: 205,149; java: 175,761; sh: 116,485; makefile: 22,152; perl: 13,971; objc: 12,561; yacc: 4,583; pascal: 2,840; lex: 1,720; ruby: 1,075; exp: 762; sql: 666; awk: 580; php: 436; lisp: 430; sed: 70; csh: 10
file content (30 lines) | stat: -rw-r--r-- 1,083 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
  <meta charset="UTF-8">
  <title>CSS Position: Box inset properties & position:fixed flex container as the root element</title>
  <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
  <link rel="help" href="https://drafts.csswg.org/css-position-3/#insets">
  <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1584890">
  <link rel="match" href="position-fixed-root-element-ref.html">
  <meta name="assert" content="This test verifies the box inset properties on a position:fixed flex container root element.">

  <style>
  html {
    display: flex;
    position: fixed;
    left: 10px;
    right: 20px;
    top: 30px;
    bottom: 40px;
    border: 5px dashed black;
    box-sizing: border-box;
  }
  </style>

  The black border should encompass the whole viewport,
  with a bit of space on each side.
  <br><br>
  It shouldn't just shrinkwrap this text's height.
</html>