mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-15 03:16:39 +00:00
14 lines
468 B
HTML
14 lines
468 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<title>img hspace/vspace - reference</title>
|
|
<style>
|
|
span { background: blue; }
|
|
</style>
|
|
<div style=width:400px;>
|
|
<p><span><img src=/images/green.png></span>
|
|
<p><span><img src=/images/green.png style="margin: 0 10px"></span>
|
|
<p><span><img src=/images/green.png style="margin: 10px 0"></span>
|
|
<p><span><img src=/images/green.png style="margin: 0 10%"></span>
|
|
<p><span><img src=/images/green.png style="margin: 10% 0"></span>
|
|
</div>
|