mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
21 lines
282 B
HTML
21 lines
282 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
#it1 {
|
|
display: inline-table;
|
|
margin-right: 20px;
|
|
}
|
|
#it2 {
|
|
display: inline-table;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span id="it1">Hello</span><span id="it2">Kitty</span></div>
|
|
</body>
|
|
</html>
|