12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html>
- <head>
- <style type="text/css">
- body {
- font-family: sans-serif;
- }
- #it1 {
- display: inline-table;
- margin-right: 20px;
- }
- #it2 {
- display: inline-table;
- margin-left: 10px;
- }
- </style>
- </head>
- <body>
- <div><span id="it1">Hello</span><span id="it2">Kitty</span></div>
- </body>
- </html>
|