https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8a58e8b829d29878b47f92e3ee57835c03273700 authored by Joshua Bell on 13 March 2018, 18:16:00 UTC
README file for entries-api
Tip revision: 8a58e8b
transform-translate-004.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Test (Transforms): translate() plus relative positioning</title>
    <link rel="author" title="Keith Schwarz" href="mailto:keith@keithschwarz.com">
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-translate">
    <meta name="assert" content='This tests that translate(25px, 25px)
    plus relative positioning 25px to the bottom right is the same as relative
    positioning by 50px toward the bottom right.'>
    <link rel="match" href="transform-translate-ref.html">
    <style>
      div {
        transform: translate(25px, 25px);
        position: relative;
        top: 25px;
        left: 25px;
      }
    </style>
  </head>
  <body>
    <div>Test Text</div>
  </body>
</html>
back to top