File: css-display.html

package info (click to toggle)
firefox 147.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,683,324 kB
  • sloc: cpp: 7,607,156; javascript: 6,532,492; ansic: 3,775,158; python: 1,415,368; xml: 634,556; asm: 438,949; java: 186,241; sh: 62,751; makefile: 18,079; objc: 13,092; perl: 12,808; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10; exp: 6
file content (64 lines) | stat: -rw-r--r-- 2,617 bytes parent folder | download | duplicates (26)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<meta charset="utf-8">
<title>Test: File input with CSS display</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#widgets">
<link rel="help" href="https://github.com/whatwg/html/issues/4082">
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#propdef-overflow">
<link rel="match" href="css-overflow-ref.html">
<style>
input {
  height: 3em;
}
.inline       { display: inline }
.inline-grid  { display: inline-grid; grid: 500px/500px; align-items: end; }
.inline-flex  { display: inline-flex; flex-flow: column; align-items: end; }
.inline-block { display: inline-block }
.inline-table { display: inline-table }
.inline-columns { display: inline-block; column-width: 500px; column-rule: 10px solid; }
.grid  { display: grid; grid: 500px/500px; align-items: end; }
.flex  { display: flex; flex-flow: column; align-items: end; }
.block { display: block }
.table { display: table }
.columns { display: block; column-width: 500px; column-rule: 10px solid; }
.n { -webkit-appearance:none; appearance:none; }
</style>
<body>
  <input type="file" class="grid">
  <input type="file" class="flex">
  <input type="file" class="block">
  <input type="file" class="table">
  <input type="file" class="columns">

  A<input type="file">
  <input type="file" class="inline">
  <input type="file" class="inline-grid">
  <input type="file" class="inline-flex">
  <input type="file" class="inline-block">
  <input type="file" class="inline-table">
  <input type="file" class="inline-columns">

  A<input disabled type="file">
  <input disabled type="file" class="inline">
  <input disabled type="file" class="inline-grid">
  <input disabled type="file" class="inline-flex">
  <input disabled type="file" class="inline-block">
  <input disabled type="file" class="inline-table">
  <input disabled type="file" class="inline-columns">

  A<input type="file" class="n">
  <input type="file" class="n inline">
  <input type="file" class="n inline-grid">
  <input type="file" class="n inline-flex">
  <input type="file" class="n inline-block">
  <input type="file" class="n inline-table">
  <input type="file" class="n inline-columns">

  A<input disabled type="file" class="n">
  <input disabled type="file" class="n inline">
  <input disabled type="file" class="n inline-grid">
  <input disabled type="file" class="n inline-flex">
  <input disabled type="file" class="n inline-block">
  <input disabled type="file" class="n inline-table">
  <input disabled type="file" class="n inline-columns">
</body>