Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
mstensho (USE GERRIT)
2016/05/12 09:34:03
The file name is misleading. This has nothing to d
Deokjin Kim
2016/05/12 11:24:20
Done.
| |
| 2 <style> | |
| 3 .outer { | |
| 4 position: relative; | |
| 5 padding: 2em; | |
| 6 width: 4em; | |
| 7 color: black; | |
| 8 background: black; | |
| 9 } | |
| 10 .inner { | |
| 11 position: absolute; | |
| 12 left: 0; | |
| 13 top: 0; | |
| 14 padding-left: 100%; | |
| 15 } | |
| 16 </style> | |
| 17 <p>The word "PASS" should be seen below, to the right of a black rectangle.</p> | |
| 18 <div class="outer"> | |
| 19 <div class="inner">PASS</div> | |
| 20 </div> | |
| OLD | NEW |