Revision 190c3feba3a42cbc4c32facd7994c190589d889e authored by Liam R. E. Quin on 26 March 2018, 01:04:45 UTC, committed by Liam R. E. Quin on 26 March 2018, 01:04:45 UTC
1 parent 2b4cdad
Raw File
transform-input-013-ref.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <style>
      input {
        margin: 10px;
        position: relative;
      }
      p + input + input {
        left: -10px;
      }
      p + input + input + input {
        left: 10px;
      }
      p + input + input + input + input {
        top: -10px;
      }
      p + input + input + input + input + input {
        top: 10px;
      }
    </style>
  </head>
  <body>
    <p>type=datetime-local</p>
    <input value="2012-02-01 12:28" type="datetime-local">
    <input value="2012-02-01 12:28" type="datetime-local">
    <input value="2012-02-01 12:28" type="datetime-local">
    <input value="2012-02-01 12:28" type="datetime-local">
    <input value="2012-02-01 12:28" type="datetime-local">
  </body>
</html>
back to top